summaryrefslogtreecommitdiffstats
path: root/Mac/scripts
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-08-17 22:12:12 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-08-17 22:12:12 (GMT)
commit87426b9f1bdc0351158a563e334ba45c4eebe6b5 (patch)
treee43c33c591a6406efed3026e89bf0d42216f93f2 /Mac/scripts
parent60762cb920dc7880f18600b30198650ea550e8de (diff)
downloadcpython-87426b9f1bdc0351158a563e334ba45c4eebe6b5.zip
cpython-87426b9f1bdc0351158a563e334ba45c4eebe6b5.tar.gz
cpython-87426b9f1bdc0351158a563e334ba45c4eebe6b5.tar.bz2
Use the new package-based scripting support.
Diffstat (limited to 'Mac/scripts')
-rw-r--r--Mac/scripts/fullbuild.py22
1 files changed, 16 insertions, 6 deletions
diff --git a/Mac/scripts/fullbuild.py b/Mac/scripts/fullbuild.py
index 2dadfa9..fef2a42 100644
--- a/Mac/scripts/fullbuild.py
+++ b/Mac/scripts/fullbuild.py
@@ -21,9 +21,16 @@ import string
import aetools
import AppleEvents
-from Metrowerks_Shell_Suite import Metrowerks_Shell_Suite
-from CodeWarrior_Standard_Suite import CodeWarrior_Standard_Suite
-from Required_Suite import Required_Suite
+
+OLDAESUPPORT = 0
+
+if OLDAESUPPORT:
+ from Metrowerks_Shell_Suite import Metrowerks_Shell_Suite
+ from CodeWarrior_suite import CodeWarrior_suite
+ from Metrowerks_Standard_Suite import Metrowerks_Standard_Suite
+ from Required_Suite import Required_Suite
+else:
+ import CodeWarrior
import Res
import Dlg
@@ -53,9 +60,12 @@ I_APPLETS=12
N_BUTTONS=13
-class MwShell(Metrowerks_Shell_Suite, CodeWarrior_Standard_Suite,
- Required_Suite, aetools.TalkTo):
- pass
+if OLDAESUPPORT:
+ class MwShell(Metrowerks_Shell_Suite, CodeWarrior_suite, Metrowerks_Standard_Suite,
+ Required_Suite, aetools.TalkTo):
+ pass
+else:
+ MwShell = CodeWarrior.CodeWarrior
RUNNING=[]