[Python-checkins] cpython (3.4): Issue #21187: Fix OS X installer fail-to-build with Xcode 5.1.

ned.deily python-checkins at python.org
Thu Apr 10 01:24:02 CEST 2014


http://hg.python.org/cpython/rev/a3299de5fc93
changeset:   90203:a3299de5fc93
branch:      3.4
parent:      90201:e0722b5b9412
user:        Ned Deily <nad at acm.org>
date:        Wed Apr 09 16:16:08 2014 -0700
summary:
  Issue #21187: Fix OS X installer fail-to-build with Xcode 5.1.

files:
  Mac/BuildScript/build-installer.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -867,7 +867,7 @@
                         ' -arch '.join(archList),
                         shellQuote(SDKPATH)[1:-1],
                         shellQuote(basedir)[1:-1],),
-                "LDFLAGS=-mmacosx-version-min=%s -syslibroot,%s -L%s/usr/local/lib -arch %s"%(
+                "LDFLAGS=-mmacosx-version-min=%s -isysroot %s -L%s/usr/local/lib -arch %s"%(
                     DEPTARGET,
                     shellQuote(SDKPATH)[1:-1],
                     shellQuote(basedir)[1:-1],

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list