summaryrefslogtreecommitdiff
path: root/Mac/BuildScript
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-03-30 20:02:08 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2009-03-30 20:02:08 +0000
commit4f8e8e434eca2f62061508723d71df0783b0ad44 (patch)
tree816e7b8a005f360522c4b770ae7634ab9bcea0ad /Mac/BuildScript
parent306db885442105ced0175dca2fe9f3b28955d63a (diff)
downloadcpython-4f8e8e434eca2f62061508723d71df0783b0ad44.tar.gz
Fix for issue 13095
Diffstat (limited to 'Mac/BuildScript')
-rwxr-xr-xMac/BuildScript/build-installer.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index c2cdb028cb..d5da074cb4 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -649,6 +649,11 @@ def buildPython():
# several paths.
version = getVersion()
+ # Since the extra libs are not in their installed framework location
+ # during the build, augment the library path so that the interpreter
+ # will find them during its extension import sanity checks.
+ os.environ['DYLD_LIBRARY_PATH'] = os.path.join(WORKDIR,
+ 'libraries', 'usr', 'local', 'lib')
print "Running configure..."
runCommand("%s -C --enable-framework --enable-universalsdk=%s "
"--with-universal-archs=%s "
@@ -670,6 +675,7 @@ def buildPython():
runCommand("make frameworkinstallextras DESTDIR=%s"%(
shellQuote(rootDir)))
+ del os.environ['DYLD_LIBRARY_PATH']
print "Copying required shared libraries"
if os.path.exists(os.path.join(WORKDIR, 'libraries', 'Library')):
runCommand("mv %s/* %s"%(