diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-04-22 13:16:44 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-04-22 13:16:44 (GMT) |
commit | 6120ddb0aa6d77102f2e0eaba288b688ad49ddc0 (patch) | |
tree | 08ad971ccbb8d72005079442fc76451fd63336c6 /Mac | |
parent | 7a1e09f60cf1d64f204eecf05c6581185e55fe8a (diff) | |
download | cpython-6120ddb0aa6d77102f2e0eaba288b688ad49ddc0.zip cpython-6120ddb0aa6d77102f2e0eaba288b688ad49ddc0.tar.gz cpython-6120ddb0aa6d77102f2e0eaba288b688ad49ddc0.tar.bz2 |
Merged revisions 80355 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80355 | martin.v.loewis | 2010-04-22 13:34:36 +0200 (Do, 22 Apr 2010) | 3 lines
Issue #8475: Pass absolute interpreter path to
"make html".
........
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/build-installer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 38206bf..b48162d 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -734,7 +734,7 @@ def buildPythonDocs(): curDir = os.getcwd() os.chdir(buildDir) runCommand('make update') - runCommand('make html') + runCommand("make html PYTHON='%s'" % os.path.abspath(sys.executable)) os.chdir(curDir) if not os.path.exists(docdir): os.mkdir(docdir) |