Minor update to OSX build-installer script, needed

to ensure that the build will succeed in a clean
checkout and with a non-default deployment target.
This commit is contained in:
Ronald Oussoren 2009-03-31 13:20:45 +00:00
parent 1c157ea984
commit e392b357e9
1 changed files with 11 additions and 0 deletions

View File

@ -1018,7 +1018,18 @@ def main():
# Now build python itself
buildPython()
# And then build the documentation
# Remove the Deployment Target from the shell
# environment, it's no longer needed and
# an unexpected build target can cause problems
# when Sphinx and its dependencies need to
# be (re-)installed.
del os.environ['MACOSX_DEPLOYMENT_TARGET']
buildPythonDocs()
# Prepare the applications folder
fn = os.path.join(WORKDIR, "_root", "Applications",
"Python %s"%(getVersion(),), "Update Shell Profile.command")
patchScript("scripts/postflight.patch-profile", fn)