Updated for new build and plugin paths

This commit is contained in:
Jack Jansen 1999-01-28 17:46:50 +00:00
parent fcfef787ca
commit c9bda41a21
3 changed files with 11 additions and 11 deletions

Binary file not shown.

View file

@ -89,9 +89,9 @@ def gotopluginfolder():
"""Go to the plugin folder, assuming we are somewhere in the Python tree""" """Go to the plugin folder, assuming we are somewhere in the Python tree"""
import os import os
while not os.path.isdir(":Plugins"): while not os.path.isdir(":Mac:Plugins"):
os.chdir("::") os.chdir("::")
os.chdir(":Plugins") os.chdir(":Mac:Plugins")
if verbose: print "current directory is", os.getcwd() if verbose: print "current directory is", os.getcwd()
def loadtoolboxmodules(): def loadtoolboxmodules():

View file

@ -140,33 +140,33 @@ def handle_dialog(filename):
# XXXX We could also include the builds for stdwin and such here... # XXXX We could also include the builds for stdwin and such here...
BUILD_DICT = { BUILD_DICT = {
I_CORE : (buildmwproject, "CWIE", [ I_CORE : (buildmwproject, "CWIE", [
(":build.mac:PythonCore.prj", "PythonCore"), (":Mac:Build:PythonCore.prj", "PythonCore"),
(":build.mac:Python.prj", "PythonFAT"), (":Mac:Build:Python.prj", "PythonFAT"),
(":build.mac:PythonApplet.prj", "PythonAppletFAT"), (":Mac:Build:PythonApplet.prj", "PythonAppletFAT"),
]), ]),
I_PPC_PLUGINS : (buildmwproject, "CWIE", [ I_PPC_PLUGINS : (buildmwproject, "CWIE", [
(":PlugIns:PlugIns.prj", "PlugIns.ppc"), (":Mac:Build:PlugIns.prj", "PlugIns.ppc"),
]), ]),
I_68K_PLUGINS : (buildmwproject, "CWIE", [ I_68K_PLUGINS : (buildmwproject, "CWIE", [
(":PlugIns:PlugIns.prj", "PlugIns.CFM68K"), (":Mac:Build:PlugIns.prj", "PlugIns.CFM68K"),
]), ]),
I_68K_FULL : (buildmwproject, "CWIE", [ I_68K_FULL : (buildmwproject, "CWIE", [
(":build.macstand:PythonStandalone.prj", "Python68K"), (":Mac:Build:PythonStandalone.prj", "Python68K"),
]), ]),
I_68K_SMALL : (buildmwproject, "CWIE", [ I_68K_SMALL : (buildmwproject, "CWIE", [
(":build.macstand:PythonStandSmall.prj", "PythonSmall68K"), (":Mac:Build:PythonStandSmall.prj", "PythonSmall68K"),
]), ]),
I_PPC_FULL : (buildmwproject, "CWIE", [ I_PPC_FULL : (buildmwproject, "CWIE", [
(":build.macstand:PythonStandalone.prj", "PythonStandalone"), (":Mac:Build:PythonStandalone.prj", "PythonStandalone"),
]), ]),
I_PPC_SMALL : (buildmwproject, "CWIE", [ I_PPC_SMALL : (buildmwproject, "CWIE", [
(":build.macstand:PythonStandSmall.prj", "PythonStandSmall"), (":Mac:Build:PythonStandSmall.prj", "PythonStandSmall"),
]), ]),
I_PPC_EXTENSIONS : (buildmwproject, "CWIE", [ I_PPC_EXTENSIONS : (buildmwproject, "CWIE", [