]> granicus.if.org Git - python/commitdiff
Merged revisions 80355 via svnmerge from
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 22 Apr 2010 13:15:47 +0000 (13:15 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 22 Apr 2010 13:15:47 +0000 (13:15 +0000)
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".
........

Mac/BuildScript/build-installer.py

index 961bba433b73478306d3c8d2d195a2488515007b..0d0a9b7278f543cba3ab6fae31e3d4758c1e40b1 100755 (executable)
@@ -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)