Commit c9bda41a authored by Jack Jansen's avatar Jack Jansen

Updated for new build and plugin paths

parent fcfef787
...@@ -89,9 +89,9 @@ def gotopluginfolder(): ...@@ -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():
......
...@@ -140,33 +140,33 @@ def handle_dialog(filename): ...@@ -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", [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment