]> granicus.if.org Git - python/commitdiff
Issue #8475: Pass absolute interpreter path to
authorMartin v. Löwis <martin@v.loewis.de>
Thu, 22 Apr 2010 11:34:36 +0000 (11:34 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Thu, 22 Apr 2010 11:34:36 +0000 (11:34 +0000)
"make html".

Mac/BuildScript/build-installer.py

index fbbb484fd7e1f1cf44c6c14c28f7b528847e7386..bab86d3436ed357bf4503ac87c2838ab296cafe7 100755 (executable)
@@ -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)