diff options
author | Sven Gothel <[email protected]> | 2013-06-20 21:23:16 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-06-20 21:23:16 +0200 |
commit | 2d811311976077bae9522afe533a140b97e62f8f (patch) | |
tree | ba35550df4df84cf1acf3ebdbc8550a0a547f49e | |
parent | 302a821f0b9bd29e8aa9a1f3ddae1d5ec846d6f6 (diff) |
Scripts Windows / JOGAMP_JAR_CODEBASE: No double quotes, otherwise they would be added to MANIFEST
-rwxr-xr-x | make/scripts/make.gluegen.all.win32.bat | 2 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.win64.bat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/make/scripts/make.gluegen.all.win32.bat b/make/scripts/make.gluegen.all.win32.bat index 750915a..33d9dcb 100755 --- a/make/scripts/make.gluegen.all.win32.bat +++ b/make/scripts/make.gluegen.all.win32.bat @@ -17,7 +17,7 @@ set SOURCE_LEVEL=1.6 set TARGET_LEVEL=1.6
set TARGET_RT_JAR=C:\jre1.6.0_30\lib\rt.jar
-set JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
+set JOGAMP_JAR_CODEBASE=Codebase: *.jogamp.org
ant -Drootrel.build=build-win32 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.gluegen.all.win32.log 2>&1
diff --git a/make/scripts/make.gluegen.all.win64.bat b/make/scripts/make.gluegen.all.win64.bat index 9c6ffc9..0fc5735 100755 --- a/make/scripts/make.gluegen.all.win64.bat +++ b/make/scripts/make.gluegen.all.win64.bat @@ -17,7 +17,7 @@ set SOURCE_LEVEL=1.6 set TARGET_LEVEL=1.6
set TARGET_RT_JAR=C:\jre1.6.0_30\lib\rt.jar
-set JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org"
+set JOGAMP_JAR_CODEBASE=Codebase: *.jogamp.org
ant -Drootrel.build=build-win64 %1 %2 %3 %4 %5 %6 %7 %8 %9 > make.gluegen.all.win64.log 2>&1
|