summaryrefslogtreecommitdiffstats
path: root/unix/configure.ac
diff options
context:
space:
mode:
authorKevin Walzer <kw@codebykevin.com>2019-10-25 01:16:54 (GMT)
committerKevin Walzer <kw@codebykevin.com>2019-10-25 01:16:54 (GMT)
commite9121854f920a1649aab0470f552174d29c41c9d (patch)
treeedc1d22b5418b9b9995eeb35510007e65ac6a9a7 /unix/configure.ac
parent1a5b1241db70d7dbdfe03ff9913da5eb8b81405a (diff)
downloadtcl-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.ac4
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