GWT: Some changes to compilation scripts to run on linux.

This commit is contained in:
bringert
2008-10-29 13:55:00 +00:00
parent 64765cd184
commit 277bcf0a35
3 changed files with 11 additions and 2 deletions

View File

@@ -7,6 +7,7 @@ pgf.fcgi:
cp dist/build/pgf.fcgi/pgf.fcgi .
gwt:
chmod a+x gwt/Translate-compile
gwt/Translate-compile
gf-gwt.jar:

View File

@@ -10,4 +10,8 @@ if [ -z "$GWT_CLASSPATH" ]; then
exit 1
fi
java -XstartOnFirstThread -Xmx256M -cp "$APPDIR/src:$APPDIR/bin:$GWT_CLASSPATH" com.google.gwt.dev.GWTCompiler -out "$APPDIR/www" "$@" se.chalmers.cs.gf.gwt.TranslateApp;
if [ `uname` = "Darwin" ]; then
GWT_JAVA_OPTS=-XstartOnFirstThread
fi
java $GWT_JAVA_OPTS -Xmx256M -cp "$APPDIR/src:$APPDIR/bin:$GWT_CLASSPATH" com.google.gwt.dev.GWTCompiler -out "$APPDIR/www" "$@" se.chalmers.cs.gf.gwt.TranslateApp;

View File

@@ -10,4 +10,8 @@ if [ -z "$GWT_CLASSPATH" ]; then
exit 1
fi
java -XstartOnFirstThread -Xmx256M -cp "$APPDIR/src:$APPDIR/bin:$GWT_CLASSPATH" com.google.gwt.dev.GWTShell -out "$APPDIR/www" -noserver "$@" http://localhost:41296/gwt/www/se.chalmers.cs.gf.gwt.TranslateApp/Translate.html;
if [ `uname` = "Darwin" ]; then
GWT_JAVA_OPTS=-XstartOnFirstThread
fi
java $GWT_JAVA_OPTS -Xmx256M -cp "$APPDIR/src:$APPDIR/bin:$GWT_CLASSPATH" com.google.gwt.dev.GWTShell -out "$APPDIR/www" -noserver "$@" http://localhost:41296/gwt/www/se.chalmers.cs.gf.gwt.TranslateApp/Translate.html;