diff options
author | Sven Gothel <[email protected]> | 2013-06-20 20:09:13 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-20 20:09:13 +0200 |
commit | 55b5449ce106164e7f47b827cbe03a7831de9942 (patch) | |
tree | 35784810b46762dd5f416d230b4780f8d26db007 /make/scripts/make.joal.all.android-armv6-cross.sh | |
parent | 7c8d351fdbc562aebc2c7796c5b8e8673bff3dca (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.joal.all.android-armv6-cross.sh')
-rwxr-xr-x | make/scripts/make.joal.all.android-armv6-cross.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/make/scripts/make.joal.all.android-armv6-cross.sh b/make/scripts/make.joal.all.android-armv6-cross.sh index f8f63db..d327f15 100755 --- a/make/scripts/make.joal.all.android-armv6-cross.sh +++ b/make/scripts/make.joal.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 @@ -87,6 +91,8 @@ export GLUEGEN_CPPTASKS_FILE=`pwd`/../../gluegen/make/lib/gluegen-cpptasks-andro #export JUNIT_DISABLED="true" #export JUNIT_RUN_ARG0="-Dnewt.test.Screen.disableScreenMode" +export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" + # BUILD_ARCHIVE=true \ ant \ -Drootrel.build=build-android-armv6 \ |