The script is wrong, but it's fixed in CVS. Replace the shell script content in 
$SEAM_HOME/seam with this:


  | #/bin/sh
  | ############################################
  | #
  | # seam-gen
  | #
  | ############################################
  | 
  | cd seam-gen
  | 
  | # OS specific support (must be 'true' or 'false').
  | cygwin=false;
  | case "`uname`" in
  |     CYGWIN*)
  |         cygwin=true
  |         ;;
  | esac
  | 
  | if [ "${1}" = "" ]
  | then
  |    cat USAGE
  | elif [ "${1}" = help ]
  | then
  |    cat README
  | elif $cygwin 
  | then
  |    java -cp 
"${JAVA_HOME}\lib\tools.jar;..\lib\ant-nodeps.jar;..\lib\ant-launcher.jar;..\lib\ant.jar"
 -Dant.home=..\lib org.apache.tools.ant.launch.Launcher ${*}
  | else
  |    java -cp 
"${JAVA_HOME}/lib/tools.jar:../lib/ant-nodeps.jar:../lib/ant-launcher.jar:../lib/ant.jar"
 -Dant.home=../lib org.apache.tools.ant.launch.Launcher ${*}
  | fi
  | 
  | cd ..
  | 

James

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3989828#3989828

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3989828
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to