aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2013-06-27 16:39:53 +0200
committerSven Gothel <[email protected]>2013-06-27 16:39:53 +0200
commit4c41e7d4286d3ce1f3ef7c8e920ec3cca99e67b8 (patch)
tree7e7643ff77eabb703a089f01a02407c2015b7bd1 /build.sh
parent5611eeb867e0268ee10248d98a3845eb9b0971d1 (diff)
Ant build.xml: Build target is 1.6; Pick up TARGET_RT_JAR (-> JRE 1.6 rt.jar); Respect javacdebug* props, def. is none.
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index f5515d3..d281c61 100644
--- a/build.sh
+++ b/build.sh
@@ -5,4 +5,10 @@ CP=$CP:lib/xerces/xercesImpl.jar:lib/xerces/xml-apis.jar
CP=$CP:lib/proguard/proguard.jar
CP=$CP:$JAVA_HOME/lib/tools.jar
-java -Dant.home=lib/ant -cp $CP org.apache.tools.ant.Main -buildfile build.xml $@ \ No newline at end of file
+export TARGET_RT_JAR=/opt-share/jre1.6.0_30/lib/rt.jar
+
+# -Djavacdebug=true \
+# -Djavacdebuglevel="source,lines,vars" \
+
+java \
+ -Dant.home=lib/ant -cp $CP org.apache.tools.ant.Main -buildfile build.xml $@