diff options
author | Sven Gothel <[email protected]> | 2019-12-02 08:21:48 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-02 08:21:48 +0100 |
commit | 50f8d56b5e7eac286e8183b162bddf2d528ffa6b (patch) | |
tree | a31db98dbc1640b5023bb4fc1b05dfd5043b4df2 /make | |
parent | 617bb981ef3485edd1e0729934d223da07a72a6b (diff) |
Scripts: Macos /opt-share -> /usr/local (Catalina Read-Only)
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/make.gluegen.all.ios.amd64.sh | 6 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.ios.arm64.sh | 6 | ||||
-rwxr-xr-x | make/scripts/make.gluegen.all.macosx.sh | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/make/scripts/make.gluegen.all.ios.amd64.sh b/make/scripts/make.gluegen.all.ios.amd64.sh index dc652ff..9a5748a 100755 --- a/make/scripts/make.gluegen.all.ios.amd64.sh +++ b/make/scripts/make.gluegen.all.ios.amd64.sh @@ -1,7 +1,7 @@ #! /bin/sh -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant +if [ -e /usr/local/etc/profile.ant ] ; then + . /usr/local/etc/profile.ant fi # -Dc.compiler.debug=true @@ -24,7 +24,7 @@ java -version export SOURCE_LEVEL=1.8 export TARGET_LEVEL=1.8 -export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar +export TARGET_RT_JAR=/usr/local/jre1.8.0_212/lib/rt.jar #export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" diff --git a/make/scripts/make.gluegen.all.ios.arm64.sh b/make/scripts/make.gluegen.all.ios.arm64.sh index 8f45b35..75943b7 100755 --- a/make/scripts/make.gluegen.all.ios.arm64.sh +++ b/make/scripts/make.gluegen.all.ios.arm64.sh @@ -1,7 +1,7 @@ #! /bin/sh -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant +if [ -e /usr/local/etc/profile.ant ] ; then + . /usr/local/etc/profile.ant fi # -Dc.compiler.debug=true @@ -24,7 +24,7 @@ java -version export SOURCE_LEVEL=1.8 export TARGET_LEVEL=1.8 -export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar +export TARGET_RT_JAR=/usr/local/jre1.8.0_212/lib/rt.jar #export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" diff --git a/make/scripts/make.gluegen.all.macosx.sh b/make/scripts/make.gluegen.all.macosx.sh index a3bf986..d61843a 100755 --- a/make/scripts/make.gluegen.all.macosx.sh +++ b/make/scripts/make.gluegen.all.macosx.sh @@ -1,7 +1,7 @@ #! /bin/sh -if [ -e /opt-share/etc/profile.ant ] ; then - . /opt-share/etc/profile.ant +if [ -e /usr/local/etc/profile.ant ] ; then + . /usr/local/etc/profile.ant fi # -Dc.compiler.debug=true @@ -19,7 +19,7 @@ export JAVA_HOME PATH export SOURCE_LEVEL=1.8 export TARGET_LEVEL=1.8 -export TARGET_RT_JAR=/opt-share/jre1.8.0_212/lib/rt.jar +export TARGET_RT_JAR=/usr/local/jre1.8.0_212/lib/rt.jar #export JOGAMP_JAR_CODEBASE="Codebase: *.jogamp.org" export JOGAMP_JAR_CODEBASE="Codebase: *.goethel.localnet" |