summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-04-22 11:34:36 +0000
committerMartin v. Löwis <martin@v.loewis.de>2010-04-22 11:34:36 +0000
commit0652f138cce0edb50bae7d1d3190af39dd37b8e3 (patch)
tree6f2adab410ce6414d19c4d79aeec9185d725336f /Mac
parent0a078728742163d73bcd508cfb97bb632487c8ed (diff)
downloadcpython-0652f138cce0edb50bae7d1d3190af39dd37b8e3.tar.gz
Issue #8475: Pass absolute interpreter path to
"make html".
Diffstat (limited to 'Mac')
-rwxr-xr-xMac/BuildScript/build-installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index fbbb484fd7..bab86d3436 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)