summaryrefslogtreecommitdiffstats
path: root/Mac/scripts/genallsuites.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-04-29 21:46:31 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-04-29 21:46:31 (GMT)
commitd6abf5d8c75103eb22e06b6c16a79fece9fc1295 (patch)
treec74edf8790508bde5ed052ef16f87fdf9dac2a65 /Mac/scripts/genallsuites.py
parent721adf99529a5565edfbdbb6678f00e7ac9bd155 (diff)
downloadcpython-d6abf5d8c75103eb22e06b6c16a79fece9fc1295.zip
cpython-d6abf5d8c75103eb22e06b6c16a79fece9fc1295.tar.gz
cpython-d6abf5d8c75103eb22e06b6c16a79fece9fc1295.tar.bz2
By default be verbose.
Diffstat (limited to 'Mac/scripts/genallsuites.py')
-rw-r--r--Mac/scripts/genallsuites.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/Mac/scripts/genallsuites.py b/Mac/scripts/genallsuites.py
index 602f3c5..cdd9ee8 100644
--- a/Mac/scripts/genallsuites.py
+++ b/Mac/scripts/genallsuites.py
@@ -7,6 +7,8 @@ import sys
import os
import gensuitemodule
+verbose=sys.stdout
+
DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages"
OS9DISK="/Volumes/Moes"
@@ -22,29 +24,29 @@ TERMINAL="/Applications/Utilities/Terminal.app"
gensuitemodule.processfile_fromresource(APPLESCRIPT,
output=os.path.join(DSTDIR, 'StdSuites'),
basepkgname='_builtinSuites',
- edit_modnames=[])
+ edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(SYSTEMEVENTS,
output=os.path.join(DSTDIR, 'SystemEvents'),
basepkgname='StdSuites',
- edit_modnames=[])
+ edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(CODEWARRIOR,
output=os.path.join(DSTDIR, 'CodeWarrior'),
basepkgname='StdSuites',
- edit_modnames=[])
+ edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(EXPLORER,
output=os.path.join(DSTDIR, 'Explorer'),
basepkgname='StdSuites',
- edit_modnames=[])
+ edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(FINDER,
output=os.path.join(DSTDIR, 'Finder'),
basepkgname='StdSuites',
- edit_modnames=[])
+ edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(NETSCAPE,
output=os.path.join(DSTDIR, 'Netscape'),
basepkgname='StdSuites',
- edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')])
+ edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')], verbose=verbose)
gensuitemodule.processfile(TERMINAL,
output=os.path.join(DSTDIR, 'Terminal'),
basepkgname='StdSuites',
- edit_modnames=[])
+ edit_modnames=[], verbose=verbose)
\ No newline at end of file