From: Martin v. Löwis Date: Thu, 22 Apr 2010 13:15:47 +0000 (+0000) Subject: Merged revisions 80355 via svnmerge from X-Git-Tag: v2.6.6rc1~416 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78ca466f7f7dcc2270332f45b97ba63f1939fc48;p=python 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". ........ --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index 961bba433b..0d0a9b7278 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -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)