diff options
author | Sven Gothel <[email protected]> | 2010-05-08 23:24:31 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-05-08 23:24:31 +0200 |
commit | eece99ddce11741397235c88c78e5b8259abc481 (patch) | |
tree | fac444b644522777d906e01ece5a031a727e3b82 /make/scripts/make.joal.all.linux-x86_64.sh | |
parent | 41224b0aaf5d95ea9988c6562fd0817731dd8f93 (diff) |
Add rootrel.build semantics ..
Diffstat (limited to 'make/scripts/make.joal.all.linux-x86_64.sh')
-rw-r--r-- | make/scripts/make.joal.all.linux-x86_64.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.linux-x86_64.sh b/make/scripts/make.joal.all.linux-x86_64.sh new file mode 100644 index 0000000..36d8645 --- /dev/null +++ b/make/scripts/make.joal.all.linux-x86_64.sh @@ -0,0 +1,23 @@ +#! /bin/sh + +if [ -e ../../setenv-build-jogl-x86_64.sh ] ; then + . ../../setenv-build-jogl-x86_64.sh +fi + +if [ -z "$ANT_PATH" ] ; then + if [ -e /usr/share/ant/bin/ant -a -e /usr/share/ant/lib/ant.jar ] ; then + ANT_PATH=/usr/share/ant + export ANT_PATH + echo autosetting ANT_PATH to $ANT_PATH + fi +fi +if [ -z "$ANT_PATH" ] ; then + echo ANT_PATH does not exist, set it + exit +fi + +# -Drootrel.build=build-x86_64 \ + +ant \ + -Drootrel.build=build-x86_64 \ + $* 2>&1 | tee make.joal.all.linux-x86_64.log |