[Python-checkins] r70952 - python/branches/py3k/Mac/BuildScript/build-installer.py

ronald.oussoren python-checkins at python.org
Wed Apr 1 16:59:59 CEST 2009


Author: ronald.oussoren
Date: Wed Apr  1 16:59:59 2009
New Revision: 70952

Log:
Fix typo in configure line that caused the build installer
to not use the right LDFLAGS settings.


Modified:
   python/branches/py3k/Mac/BuildScript/build-installer.py

Modified: python/branches/py3k/Mac/BuildScript/build-installer.py
==============================================================================
--- python/branches/py3k/Mac/BuildScript/build-installer.py	(original)
+++ python/branches/py3k/Mac/BuildScript/build-installer.py	Wed Apr  1 16:59:59 2009
@@ -651,7 +651,7 @@
                                         'libraries', 'usr', 'local', 'lib')
     print "Running configure..."
     runCommand("%s -C --enable-framework --enable-universalsdk=%s "
-               "--with-universal-archs=%s --with-computed-gotos"
+               "--with-universal-archs=%s --with-computed-gotos "
                "LDFLAGS='-g -L%s/libraries/usr/local/lib' "
                "OPT='-g -O3 -I%s/libraries/usr/local/include' 2>&1"%(
         shellQuote(os.path.join(SRCDIR, 'configure')), shellQuote(SDKPATH),


More information about the Python-checkins mailing list