Issue #8475: Pass absolute interpreter path to
"make html".
diff --git a/Mac/BuildScript/build-installer.py b/Mac/BuildScript/build-installer.py
index fbbb484..bab86d3 100755
--- a/Mac/BuildScript/build-installer.py
+++ b/Mac/BuildScript/build-installer.py
@@ -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)