Issue #8475: Pass absolute interpreter path to

"make html".
This commit is contained in:
Martin v. Löwis 2010-04-22 11:34:36 +00:00
parent 23196a564b
commit 896c4777c6

View file

@ -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)