diff options
author | Kevin Walzer <kw@codebykevin.com> | 2019-10-25 01:13:42 (GMT) |
---|---|---|
committer | Kevin Walzer <kw@codebykevin.com> | 2019-10-25 01:13:42 (GMT) |
commit | 1d042a78a8b9eb70829fbad5cf1c7ab7834c9c6d (patch) | |
tree | 5a83035de3ddbb40df8e08198786f5ee7b15b33e /unix/tcl.m4 | |
parent | 94ef14f2fe7454b1f9483b2718ae78c3f578959b (diff) | |
download | tcl-1d042a78a8b9eb70829fbad5cf1c7ab7834c9c6d.zip tcl-1d042a78a8b9eb70829fbad5cf1c7ab7834c9c6d.tar.gz tcl-1d042a78a8b9eb70829fbad5cf1c7ab7834c9c6d.tar.bz2 |
Remove /System from auto_path on macOS because Apple has deprecated its own ancient installation of Tcl/Tk
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index f451d0e..3150973 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -77,7 +77,6 @@ AC_DEFUN([SC_PATH_TCLCONFIG], [ for i in `ls -d ~/Library/Frameworks 2>/dev/null` \ `ls -d /Library/Frameworks 2>/dev/null` \ `ls -d /Network/Library/Frameworks 2>/dev/null` \ - `ls -d /System/Library/Frameworks 2>/dev/null` \ ; do if test -f "$i/Tcl.framework/tclConfig.sh" ; then ac_cv_c_tclconfig="`(cd $i/Tcl.framework; pwd)`" @@ -210,7 +209,6 @@ AC_DEFUN([SC_PATH_TKCONFIG], [ for i in `ls -d ~/Library/Frameworks 2>/dev/null` \ `ls -d /Library/Frameworks 2>/dev/null` \ `ls -d /Network/Library/Frameworks 2>/dev/null` \ - `ls -d /System/Library/Frameworks 2>/dev/null` \ ; do if test -f "$i/Tk.framework/tkConfig.sh" ; then ac_cv_c_tkconfig="`(cd $i/Tk.framework; pwd)`" |