By default be verbose.

This commit is contained in:
Jack Jansen 2003-04-29 21:46:31 +00:00
parent 721adf9952
commit d6abf5d8c7
1 changed files with 9 additions and 7 deletions

View File

@ -7,6 +7,8 @@ import sys
import os import os
import gensuitemodule import gensuitemodule
verbose=sys.stdout
DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages" DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages"
OS9DISK="/Volumes/Moes" OS9DISK="/Volumes/Moes"
@ -22,29 +24,29 @@ TERMINAL="/Applications/Utilities/Terminal.app"
gensuitemodule.processfile_fromresource(APPLESCRIPT, gensuitemodule.processfile_fromresource(APPLESCRIPT,
output=os.path.join(DSTDIR, 'StdSuites'), output=os.path.join(DSTDIR, 'StdSuites'),
basepkgname='_builtinSuites', basepkgname='_builtinSuites',
edit_modnames=[]) edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(SYSTEMEVENTS, gensuitemodule.processfile(SYSTEMEVENTS,
output=os.path.join(DSTDIR, 'SystemEvents'), output=os.path.join(DSTDIR, 'SystemEvents'),
basepkgname='StdSuites', basepkgname='StdSuites',
edit_modnames=[]) edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(CODEWARRIOR, gensuitemodule.processfile(CODEWARRIOR,
output=os.path.join(DSTDIR, 'CodeWarrior'), output=os.path.join(DSTDIR, 'CodeWarrior'),
basepkgname='StdSuites', basepkgname='StdSuites',
edit_modnames=[]) edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(EXPLORER, gensuitemodule.processfile(EXPLORER,
output=os.path.join(DSTDIR, 'Explorer'), output=os.path.join(DSTDIR, 'Explorer'),
basepkgname='StdSuites', basepkgname='StdSuites',
edit_modnames=[]) edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(FINDER, gensuitemodule.processfile(FINDER,
output=os.path.join(DSTDIR, 'Finder'), output=os.path.join(DSTDIR, 'Finder'),
basepkgname='StdSuites', basepkgname='StdSuites',
edit_modnames=[]) edit_modnames=[], verbose=verbose)
gensuitemodule.processfile(NETSCAPE, gensuitemodule.processfile(NETSCAPE,
output=os.path.join(DSTDIR, 'Netscape'), output=os.path.join(DSTDIR, 'Netscape'),
basepkgname='StdSuites', 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, gensuitemodule.processfile(TERMINAL,
output=os.path.join(DSTDIR, 'Terminal'), output=os.path.join(DSTDIR, 'Terminal'),
basepkgname='StdSuites', basepkgname='StdSuites',
edit_modnames=[]) edit_modnames=[], verbose=verbose)