diff options
author | Sven Gothel <[email protected]> | 2019-12-02 08:22:19 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2019-12-02 08:22:19 +0100 |
commit | ce12e14d0798882e840fea7b0c6930788ca66d6f (patch) | |
tree | d80994f8c2e2711dbf2644c7207f285a7c019d25 /make/scripts | |
parent | 126e817ed16e92633aff3b0d15a2428570c8a828 (diff) |
Scripts: Macos /opt-share -> /usr/local (Catalina Read-Only)
Diffstat (limited to 'make/scripts')
-rwxr-xr-x | make/scripts/make.joal.all.macosx.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/make/scripts/make.joal.all.macosx.sh b/make/scripts/make.joal.all.macosx.sh index 7826fa8..6248273 100755 --- a/make/scripts/make.joal.all.macosx.sh +++ b/make/scripts/make.joal.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 JAVA_HOME=`/usr/libexec/java_home -version 11` @@ -12,7 +12,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" |