diff options
author | Ned Deily <nad@acm.org> | 2011-01-29 18:56:28 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-01-29 18:56:28 (GMT) |
commit | e59e4c5e563a563e2df01a03a67ac393f7a02e9f (patch) | |
tree | f75dfabf9e0491ec38a5aae36d33e014246edd81 /Mac/BuildScript/README.txt | |
parent | 806c944edb4919288bfec7b24079df1472d42055 (diff) | |
download | cpython-e59e4c5e563a563e2df01a03a67ac393f7a02e9f.zip cpython-e59e4c5e563a563e2df01a03a67ac393f7a02e9f.tar.gz cpython-e59e4c5e563a563e2df01a03a67ac393f7a02e9f.tar.bz2 |
Issue #11054: Allow Mac OS X installer builds to again work on 10.5 with
the system-provided Python. Also, properly guard a new Python 3 only
installer build step so that build-installer.py can stay compatible
with the 2.7 version. (with release manager approval for 3.2rc2)
Diffstat (limited to 'Mac/BuildScript/README.txt')
-rw-r--r-- | Mac/BuildScript/README.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Mac/BuildScript/README.txt b/Mac/BuildScript/README.txt index c4f0b67..de2f5cb 100644 --- a/Mac/BuildScript/README.txt +++ b/Mac/BuildScript/README.txt @@ -14,7 +14,7 @@ for each release: 1. 32-bit-only, i386 and PPC universal, capable on running on all machines supported by Mac OS X 10.3.9 through (at least) 10.6:: - python2.6 build-installer.py \ + python build-installer.py \ --sdk-path=/Developer/SDKs/MacOSX10.4u.sdk \ --universal-archs=32-bit \ --dep-target=10.3 @@ -38,7 +38,7 @@ for each release: * ``MacOSX10.4u`` SDK (later SDKs do not support PPC G3 processors) * ``MACOSX_DEPLOYMENT_TARGET=10.3`` * Apple ``gcc-4.0`` - * Python 2.6 for documentation build with Sphinx + * Python 2.n (n >= 4) for documentation build with Sphinx - alternate build environments: @@ -48,7 +48,7 @@ for each release: 2. 64-bit / 32-bit, x86_64 and i386 universal, for OS X 10.6 (and later):: - python2.6 build-installer.py \ + python build-installer.py \ --sdk-path=/Developer/SDKs/MacOSX10.6.sdk \ --universal-archs=intel \ --dep-target=10.6 @@ -67,7 +67,7 @@ for each release: * ``MacOSX10.6`` SDK * ``MACOSX_DEPLOYMENT_TARGET=10.6`` * Apple ``gcc-4.2`` - * Python 2.6 for documentation build with Sphinx + * Python 2.n (n >= 4) for documentation build with Sphinx - alternate build environments: |