summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-04-22 13:18:09 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-04-22 13:18:09 (GMT)
commit621522b92c0074c222556dba32b3603bab6cab40 (patch)
tree602fefb41b918f4f74f73ea73e54fdb8e1cc13cb
parent2f2a070af7df168e4d6f90c08538444e88c77ceb (diff)
downloadcpython-621522b92c0074c222556dba32b3603bab6cab40.zip
cpython-621522b92c0074c222556dba32b3603bab6cab40.tar.gz
cpython-621522b92c0074c222556dba32b3603bab6cab40.tar.bz2
Merged revisions 80366 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80366 | martin.v.loewis | 2010-04-22 15:16:44 +0200 (Do, 22 Apr 2010) | 10 lines 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 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)