diff options
author | Sven Gothel <[email protected]> | 2019-12-02 08:23:11 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-02 08:23:11 +0100 |
commit | 6594838575d101d567f4e6dc50b6acd74a294bde (patch) | |
tree | 79b73f6561cc156322ed1c0e7b6f06fb529d8cbf /make | |
parent | 56045ef6f2b33509754fbff82affca94290ae6e0 (diff) |
Scripts: Macos /opt-share -> /usr/local (Catalina Read-Only)
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/make.jogl.all.ios.amd64.sh | 6 | ||||
-rwxr-xr-x | make/scripts/make.jogl.all.ios.arm64.sh | 6 | ||||
-rwxr-xr-x | make/scripts/make.jogl.all.macosx.sh | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/make/scripts/make.jogl.all.ios.amd64.sh b/make/scripts/make.jogl.all.ios.amd64.sh index 6aed9b533..2c87fbbb8 100755 --- a/make/scripts/make.jogl.all.ios.amd64.sh +++ b/make/scripts/make.jogl.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 @@ -20,7 +20,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.jogl.all.ios.arm64.sh b/make/scripts/make.jogl.all.ios.arm64.sh index a7ac79be3..26b521f30 100755 --- a/make/scripts/make.jogl.all.ios.arm64.sh +++ b/make/scripts/make.jogl.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 @@ -20,7 +20,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.jogl.all.macosx.sh b/make/scripts/make.jogl.all.macosx.sh index 468238a4a..d10652485 100755 --- a/make/scripts/make.jogl.all.macosx.sh +++ b/make/scripts/make.jogl.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 # Force OSX SDK 10.6, if desired @@ -21,7 +21,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" |