mirror of
https://github.com/python/cpython.git
synced 2025-08-19 08:11:46 +00:00
Merged revisions 70802 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70802 | ronald.oussoren | 2009-03-31 08:20:45 -0500 (Tue, 31 Mar 2009) | 4 lines 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:
parent
60098040c8
commit
85da5e83de
1 changed files with 11 additions and 0 deletions
|
@ -1018,7 +1018,18 @@ def main():
|
||||||
|
|
||||||
# Now build python itself
|
# Now build python itself
|
||||||
buildPython()
|
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()
|
buildPythonDocs()
|
||||||
|
|
||||||
|
|
||||||
|
# Prepare the applications folder
|
||||||
fn = os.path.join(WORKDIR, "_root", "Applications",
|
fn = os.path.join(WORKDIR, "_root", "Applications",
|
||||||
"Python %s"%(getVersion(),), "Update Shell Profile.command")
|
"Python %s"%(getVersion(),), "Update Shell Profile.command")
|
||||||
patchScript("scripts/postflight.patch-profile", fn)
|
patchScript("scripts/postflight.patch-profile", fn)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue