diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-04-22 11:34:36 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-04-22 11:34:36 (GMT) |
commit | 896c4777c658e6132f5e9d6a34162746d790a4c6 (patch) | |
tree | c6aea63d8f9bb3b4cc878ab13afa8a4b955195c1 /Mac | |
parent | 23196a564b07d9aa24469f50bc09fd39d0f27d13 (diff) | |
download | cpython-896c4777c658e6132f5e9d6a34162746d790a4c6.zip cpython-896c4777c658e6132f5e9d6a34162746d790a4c6.tar.gz cpython-896c4777c658e6132f5e9d6a34162746d790a4c6.tar.bz2 |
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 fbbb484..bab86d3 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -728,7 +728,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) |