From: Martin v. Löwis Date: Thu, 22 Apr 2010 11:34:36 +0000 (+0000) Subject: Issue #8475: Pass absolute interpreter path to X-Git-Tag: v2.7b2~222 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=896c4777c658e6132f5e9d6a34162746d790a4c6;p=python Issue #8475: Pass absolute interpreter path to "make html". --- diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py index fbbb484fd7..bab86d3436 100755 --- a/Mac/BuildScript/build-installer.py +++ b/Mac/BuildScript/build-installer.py @@ -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)