diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-05-07 15:52:12 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-05-07 15:52:12 (GMT) |
commit | 8b4c98783d49d26f546fe9bea78087c64baa5a5f (patch) | |
tree | cd7e0afd1d5fb22c6c218dc6d181c2670fa45bb8 /Mac/scripts/fullbuild.py | |
parent | c512be0bb22092269d1bcad35d8fd63c8b94ac5e (diff) | |
download | cpython-8b4c98783d49d26f546fe9bea78087c64baa5a5f.zip cpython-8b4c98783d49d26f546fe9bea78087c64baa5a5f.tar.gz cpython-8b4c98783d49d26f546fe9bea78087c64baa5a5f.tar.bz2 |
- toolboxmodules built first (others depend on it)
- Changed name of fat interpreter to PythonFAT (Python conflicted with toplevel
folder of the same name, unfortunately)
Diffstat (limited to 'Mac/scripts/fullbuild.py')
-rw-r--r-- | Mac/scripts/fullbuild.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py index 224aaba..2cf10f7 100644 --- a/Mac/scripts/fullbuild.py +++ b/Mac/scripts/fullbuild.py @@ -136,25 +136,25 @@ I_68K_CORE : (buildmwproject, "CWIE", [ ]), I_PPC_PLUGINS : (buildmwproject, "CWIE", [ + ":PlugIns:toolboxmodules.ppc.µ", # First: used by others + ":PlugIns:qtmodules.ppc.µ", ":PlugIns:ctb.ppc.µ", ":PlugIns:gdbm.ppc.µ", ":PlugIns:icglue.ppc.µ", ":PlugIns:imgmodules.ppc.µ", ":PlugIns:macspeech.ppc.µ", - ":PlugIns:toolboxmodules.ppc.µ", - ":PlugIns:qtmodules.ppc.µ", ":PlugIns:waste.ppc.µ", ":PlugIns:_tkinter.ppc.µ", ":PlugIns:calldll.ppc.µ", ]), I_68K_PLUGINS : (buildmwproject, "CWIE", [ + ":PlugIns:toolboxmodules.CFM68K.µ", # First: used by others + ":PlugIns:qtmodules.CFM68K.µ", ":PlugIns:ctb.CFM68K.µ", ":PlugIns:gdbm.CFM68K.µ", ":PlugIns:icglue.CFM68K.µ", ":PlugIns:imgmodules.CFM68K.µ", - ":PlugIns:toolboxmodules.CFM68K.µ", - ":PlugIns:qtmodules.CFM68K.µ", ":PlugIns:waste.CFM68K.µ", ":PlugIns:_tkinter.CFM68K.µ", ]), @@ -194,7 +194,7 @@ I_APPLETS : (buildapplet, None, [ ]), I_FAT : (buildfat, None, [ - (":Python", ":build.macppc.shared:PythonPPC", + (":PythonFAT", ":build.macppc.shared:PythonPPC", ":build.mac68k.shared:PythonCFM68K"), (":PythonApplet", ":build.macppc.shared:PythonAppletPPC", ":build.mac68k.shared:PythonAppletCFM68K") @@ -219,8 +219,7 @@ def main(): instructions.append(BUILD_DICT[i]) for routine, arg, list in instructions: - #routine(dir, arg, list) - print routine, dir, arg, list # DBG + routine(dir, arg, list) print "All done!" sys.exit(1) |