summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-04-22 13:15:47 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-04-22 13:15:47 (GMT)
commit78ca466f7f7dcc2270332f45b97ba63f1939fc48 (patch)
tree75fca80ed2c505d32a803c7e4d4dc7d1b195b4fe
parentba02025457eca3d186ef205af06b186aca5049a2 (diff)
downloadcpython-78ca466f7f7dcc2270332f45b97ba63f1939fc48.zip
cpython-78ca466f7f7dcc2270332f45b97ba63f1939fc48.tar.gz
cpython-78ca466f7f7dcc2270332f45b97ba63f1939fc48.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". ........
-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 961bba4..0d0a9b7 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -722,7 +722,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)