[Python-checkins] r80355 - python/trunk/Mac/BuildScript/build-installer.py

martin.v.loewis python-checkins at python.org
Thu Apr 22 13:34:36 CEST 2010


Author: martin.v.loewis
Date: Thu Apr 22 13:34:36 2010
New Revision: 80355

Log:
Issue #8475: Pass absolute interpreter path to
"make html".


Modified:
   python/trunk/Mac/BuildScript/build-installer.py

Modified: python/trunk/Mac/BuildScript/build-installer.py
==============================================================================
--- python/trunk/Mac/BuildScript/build-installer.py	(original)
+++ python/trunk/Mac/BuildScript/build-installer.py	Thu Apr 22 13:34:36 2010
@@ -728,7 +728,7 @@
     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)


More information about the Python-checkins mailing list