From 5cb6f9cea2c9d424f763f0cb6e5638c80337e4fb Mon Sep 17 00:00:00 2001 From: Ben Jackson Date: Sat, 27 Apr 2019 13:24:09 +0100 Subject: [PATCH] Actually the tclconfig.sh in system headers contains bogus paths. You just need homebrew --- install_gadget.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install_gadget.py b/install_gadget.py index 73d8212..daf6502 100755 --- a/install_gadget.py +++ b/install_gadget.py @@ -187,8 +187,7 @@ def InstallTclProDebug( name, root ): # '/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System' # '/Library/Frameworks/Tcl.framework/Versions' # '/Current', - for p in [ '/System/Library/Frameworks/Tcl.framework/', - '/usr/local/opt/tcl-tk/lib' ]: + for p in [ '/usr/local/opt/tcl-tk/lib' ]: if os.path.exists( os.path.join( p, 'tclConfig.sh' ) ): configure.append( '--with-tcl=' + p ) break