[Python-checkins] r80365 - in python/branches/release26-maint: Mac/BuildScript/build-installer.py

martin.v.loewis python-checkins at python.org
Thu Apr 22 15:15:47 CEST 2010


Author: martin.v.loewis
Date: Thu Apr 22 15:15:47 2010
New Revision: 80365

Log:
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".
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Mac/BuildScript/build-installer.py

Modified: python/branches/release26-maint/Mac/BuildScript/build-installer.py
==============================================================================
--- python/branches/release26-maint/Mac/BuildScript/build-installer.py	(original)
+++ python/branches/release26-maint/Mac/BuildScript/build-installer.py	Thu Apr 22 15:15:47 2010
@@ -722,7 +722,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