diff options
Diffstat (limited to 'make/scripts/tests-x32.sh')
-rwxr-xr-x | make/scripts/tests-x32.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/make/scripts/tests-x32.sh b/make/scripts/tests-x32.sh index edbab5ac6..8ac1dc51b 100755 --- a/make/scripts/tests-x32.sh +++ b/make/scripts/tests-x32.sh @@ -1,7 +1,11 @@ #! /bin/bash -spath=`dirname $0` +SDIR=`dirname $0` -. $spath/tests.sh /opt-linux-x86/j2se6/bin/java ../build-x86 $* +if [ -e $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh ] ; then + . $SDIR/../../../gluegen/make/scripts/setenv-build-jogl-x86.sh +fi + +. $SDIR/tests.sh `which java` ../build-x86 $* |