diff options
author | Kevin Walzer <kw@codebykevin.com> | 2019-10-25 01:16:54 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2019-10-25 01:16:54 (GMT) |
commit | e9121854f920a1649aab0470f552174d29c41c9d (patch) | |
tree | edc1d22b5418b9b9995eeb35510007e65ac6a9a7 /unix/configure.ac | |
parent | 1a5b1241db70d7dbdfe03ff9913da5eb8b81405a (diff) | |
download | tcl-e9121854f920a1649aab0470f552174d29c41c9d.zip tcl-e9121854f920a1649aab0470f552174d29c41c9d.tar.gz tcl-e9121854f920a1649aab0470f552174d29c41c9d.tar.bz2 |
Remove /System from auto_path on macOS because Apple has deprecated its own ancient installation of Tcl/Tk
Diffstat (limited to 'unix/configure.ac')
-rw-r--r-- | unix/configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/configure.ac b/unix/configure.ac index 8335b20..fe88066 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -930,9 +930,9 @@ VERSION=${TCL_VERSION} if test "$FRAMEWORK_BUILD" = "1" ; then test -z "$TCL_PACKAGE_PATH" && \ - TCL_PACKAGE_PATH="~/Library/Tcl /Library/Tcl /System/Library/Tcl ~/Library/Frameworks /Library/Frameworks /System/Library/Frameworks" + TCL_PACKAGE_PATH="~/Library/Tcl /Library/Tcl ~/Library/Frameworks /Library/Frameworks" test -z "$TCL_MODULE_PATH" && \ - TCL_MODULE_PATH="~/Library/Tcl /Library/Tcl /System/Library/Tcl" + TCL_MODULE_PATH="~/Library/Tcl /Library/Tcl" elif test "$prefix/lib" != "$libdir"; then TCL_PACKAGE_PATH="${libdir} ${prefix}/lib ${TCL_PACKAGE_PATH}" else |