diff options
Diffstat (limited to 'make/scripts/make.jogl.all.linux-x86.sh')
-rwxr-xr-x | make/scripts/make.jogl.all.linux-x86.sh | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/make/scripts/make.jogl.all.linux-x86.sh b/make/scripts/make.jogl.all.linux-x86.sh index b81cf79f6..b79fffe33 100755 --- a/make/scripts/make.jogl.all.linux-x86.sh +++ b/make/scripts/make.jogl.all.linux-x86.sh @@ -1,19 +1,9 @@ #! /bin/sh -if [ -e ../../setenv-build-jogl-x86.sh ] ; then - . ../../setenv-build-jogl-x86.sh -fi +SDIR=`dirname $0` -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 +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh fi if [ "$1" = "-libdir" ] ; then |