summaryrefslogtreecommitdiff
path: root/Mac/scripts/fullbuild.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2001-08-16 20:39:17 +0000
committerJack Jansen <jack.jansen@cwi.nl>2001-08-16 20:39:17 +0000
commite791a6421fae40dd7aae1f67fd6b6d737c510af7 (patch)
tree478e786dcf4acb51e3736cfbf7581099a17dec7e /Mac/scripts/fullbuild.py
parent214a0b138291a649b90f86ae7d3b2a788016947d (diff)
downloadcpython-git-e791a6421fae40dd7aae1f67fd6b6d737c510af7.tar.gz
If genpluginprojects is called from fullbuild we set the Python source directory to be the same as fullbuild uses (in stead of using the default sys.prefix). This fixes an issue Mark Day raised that you can't use fullbuild with one Python installation to build another one.
Diffstat (limited to 'Mac/scripts/fullbuild.py')
-rw-r--r--Mac/scripts/fullbuild.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py
index d3a5a13c7c..43d69e6b55 100644
--- a/Mac/scripts/fullbuild.py
+++ b/Mac/scripts/fullbuild.py
@@ -18,6 +18,7 @@ import MacOS
import EasyDialogs
import re
import string
+import genpluginprojects
import aetools
import AppleEvents
@@ -377,6 +378,8 @@ def main():
if not ok:
sys.exit(0)
dir = dir.as_pathname()
+ # Set genpluginprojects to use this folder (slight hack)
+ genpluginprojects.PYTHONDIR = dir
todo = handle_dialog(os.path.join(dir, MACBUILDNO))