From: Jack Jansen Date: Thu, 28 Jan 1999 17:46:50 +0000 (+0000) Subject: Updated for new build and plugin paths X-Git-Tag: v1.5.2b2~238 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9bda41a210ed2235c1ba47dda8875696eda3850;p=thirdparty%2FPython%2Fcpython.git Updated for new build and plugin paths --- diff --git a/Mac/Resources/pythonpath.rsrc b/Mac/Resources/pythonpath.rsrc index 2be9bbfcd269..da1157840c54 100644 Binary files a/Mac/Resources/pythonpath.rsrc and b/Mac/Resources/pythonpath.rsrc differ diff --git a/Mac/scripts/ConfigurePython.py b/Mac/scripts/ConfigurePython.py index 4065b848be3f..8fd0a3c095a0 100644 --- a/Mac/scripts/ConfigurePython.py +++ b/Mac/scripts/ConfigurePython.py @@ -89,9 +89,9 @@ def gotopluginfolder(): """Go to the plugin folder, assuming we are somewhere in the Python tree""" import os - while not os.path.isdir(":Plugins"): + while not os.path.isdir(":Mac:Plugins"): os.chdir("::") - os.chdir(":Plugins") + os.chdir(":Mac:Plugins") if verbose: print "current directory is", os.getcwd() def loadtoolboxmodules(): diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py index d2570befa9cf..cf01d63cf61f 100644 --- a/Mac/scripts/fullbuild.py +++ b/Mac/scripts/fullbuild.py @@ -140,33 +140,33 @@ def handle_dialog(filename): # XXXX We could also include the builds for stdwin and such here... BUILD_DICT = { I_CORE : (buildmwproject, "CWIE", [ - (":build.mac:PythonCore.prj", "PythonCore"), - (":build.mac:Python.prj", "PythonFAT"), - (":build.mac:PythonApplet.prj", "PythonAppletFAT"), + (":Mac:Build:PythonCore.prj", "PythonCore"), + (":Mac:Build:Python.prj", "PythonFAT"), + (":Mac:Build:PythonApplet.prj", "PythonAppletFAT"), ]), I_PPC_PLUGINS : (buildmwproject, "CWIE", [ - (":PlugIns:PlugIns.prj", "PlugIns.ppc"), + (":Mac:Build:PlugIns.prj", "PlugIns.ppc"), ]), I_68K_PLUGINS : (buildmwproject, "CWIE", [ - (":PlugIns:PlugIns.prj", "PlugIns.CFM68K"), + (":Mac:Build:PlugIns.prj", "PlugIns.CFM68K"), ]), I_68K_FULL : (buildmwproject, "CWIE", [ - (":build.macstand:PythonStandalone.prj", "Python68K"), + (":Mac:Build:PythonStandalone.prj", "Python68K"), ]), I_68K_SMALL : (buildmwproject, "CWIE", [ - (":build.macstand:PythonStandSmall.prj", "PythonSmall68K"), + (":Mac:Build:PythonStandSmall.prj", "PythonSmall68K"), ]), I_PPC_FULL : (buildmwproject, "CWIE", [ - (":build.macstand:PythonStandalone.prj", "PythonStandalone"), + (":Mac:Build:PythonStandalone.prj", "PythonStandalone"), ]), I_PPC_SMALL : (buildmwproject, "CWIE", [ - (":build.macstand:PythonStandSmall.prj", "PythonStandSmall"), + (":Mac:Build:PythonStandSmall.prj", "PythonStandSmall"), ]), I_PPC_EXTENSIONS : (buildmwproject, "CWIE", [