diff options
author | Sven Gothel <[email protected]> | 2013-06-20 04:29:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-20 04:29:21 +0200 |
commit | 6704fab767307b89fa21250c20f1dab56323ffac (patch) | |
tree | ac7b5460d6f706188b2a8c75f8fa2adb592723df /make/scripts/make.gluegen.all.android-armv6-cross.sh | |
parent | 6c30050195849cd385422fc6e65230c16b818215 (diff) |
Bug 758: Fix scripts and ant build files to work w/ Java7 (default now) producing Java6 bytecode ; Apply JAR Manifest tags: Sealed, Permissions and Codebase
Diffstat (limited to 'make/scripts/make.gluegen.all.android-armv6-cross.sh')
-rwxr-xr-x | make/scripts/make.gluegen.all.android-armv6-cross.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/make/scripts/make.gluegen.all.android-armv6-cross.sh b/make/scripts/make.gluegen.all.android-armv6-cross.sh index 55fea49..9186ff7 100755 --- a/make/scripts/make.gluegen.all.android-armv6-cross.sh +++ b/make/scripts/make.gluegen.all.android-armv6-cross.sh @@ -1,5 +1,9 @@ #! /bin/sh +if [ -e $SDIR/setenv-build-jogl-x86_64.sh ] ; then + . $SDIR/setenv-build-jogl-x86_64.sh +fi + export NODE_LABEL=. export HOST_UID=jogamp @@ -88,6 +92,8 @@ export GLUEGEN_CPPTASKS_FILE="lib/gluegen-cpptasks-android-armv6.xml" which gcc 2>&1 | tee make.gluegen.all.android-armv6-cross.log +export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" + #BUILD_ARCHIVE=true \ ant \ -Drootrel.build=build-android-armv6 \ |