]> granicus.if.org Git - python/commitdiff
Change framework search order when looking for Tcl/Tk on OSX.
authorRonald Oussoren <ronaldoussoren@mac.com>
Wed, 4 Mar 2009 21:30:12 +0000 (21:30 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Wed, 4 Mar 2009 21:30:12 +0000 (21:30 +0000)
This is needed because the system linker looks in /Library/Framework before
it looks in /System/Library frameworks. Without this patch _tkinter will
be unusable when it is compiled on a system that has Tk 8.5 installed in
/Library/Frameworks (and the Apple 8.4 install in /System/Library/Frameworks)

setup.py

index 985779dea3aa2d78cab1ce185838fde8597476f2..f1e983d3f0fc5d69b15e4fb7acda6e05ced3d248 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1443,8 +1443,8 @@ class PyBuildExt(build_ext):
         # different the UNIX search logic is not sharable.
         from os.path import join, exists
         framework_dirs = [
-            '/System/Library/Frameworks/',
             '/Library/Frameworks',
+            '/System/Library/Frameworks/',
             join(os.getenv('HOME'), '/Library/Frameworks')
         ]