summaryrefslogtreecommitdiffstats
path: root/Mac/scripts
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-07-31 09:45:27 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-07-31 09:45:27 (GMT)
commit490ec9c8773fd117cb724522b94eaac8e03932ef (patch)
tree91cfab127bbeedec04bb16e793d83980aeae5fc5 /Mac/scripts
parentb44f1cca6c9d4b7902b91abd9953a5b0a405e477 (diff)
downloadcpython-490ec9c8773fd117cb724522b94eaac8e03932ef.zip
cpython-490ec9c8773fd117cb724522b94eaac8e03932ef.tar.gz
cpython-490ec9c8773fd117cb724522b94eaac8e03932ef.tar.bz2
Use buildtools where appropriate.
Build BuildApplication applet too.
Diffstat (limited to 'Mac/scripts')
-rw-r--r--Mac/scripts/fullbuild.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py
index c4d95e4..d2570be 100644
--- a/Mac/scripts/fullbuild.py
+++ b/Mac/scripts/fullbuild.py
@@ -28,7 +28,7 @@ from Required_Suite import Required_Suite
import Res
import Dlg
-import BuildApplet
+import buildtools
import cfmfile
# Dialog resource. Note that the item numbers should correspond
@@ -87,7 +87,7 @@ def buildmwproject(top, creator, projects):
def buildapplet(top, dummy, list):
"""Create python applets"""
- template = BuildApplet.findtemplate()
+ template = buildtools.findtemplate()
for src in list:
if src[-3:] != '.py':
raise 'Should end in .py', src
@@ -99,7 +99,7 @@ def buildapplet(top, dummy, list):
except os.error:
pass
print 'Building applet', dst
- BuildApplet.process(template, src, dst)
+ buildtools.process(template, src, dst, 1)
def buildfat(top, dummy, list):
"""Build fat binaries"""
@@ -184,6 +184,7 @@ I_68K_EXTENSIONS : (buildmwproject, "CWIE", [
I_APPLETS : (buildapplet, None, [
":Mac:scripts:EditPythonPrefs.py",
":Mac:scripts:BuildApplet.py",
+ ":Mac:scripts:BuildApplication.py",
":Mac:scripts:ConfigurePython.py"
]),
}