summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-08-22 23:36:11 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-08-22 23:36:11 (GMT)
commit5fd945895e3fba0e5eaa33ddc79fc3f2cb749a65 (patch)
tree58b754e0e9137f9f28d74ec58f8cb906fa59a574 /Mac
parentd59f8d0691aff6649c70bfc764f7edce8d5f105c (diff)
downloadcpython-5fd945895e3fba0e5eaa33ddc79fc3f2cb749a65.zip
cpython-5fd945895e3fba0e5eaa33ddc79fc3f2cb749a65.tar.gz
cpython-5fd945895e3fba0e5eaa33ddc79fc3f2cb749a65.tar.bz2
For MacPython-OS9 verbose is the default.
Diffstat (limited to 'Mac')
-rw-r--r--Mac/scripts/BuildApplet.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/scripts/BuildApplet.py b/Mac/scripts/BuildApplet.py
index 0679825..5e0bc27 100644
--- a/Mac/scripts/BuildApplet.py
+++ b/Mac/scripts/BuildApplet.py
@@ -81,6 +81,9 @@ def buildapplet():
verbose = Verbose()
elif opt in ('-?', '--help'):
usage()
+ # On OS9 always be verbose
+ if sys.platform == 'mac' and not verbose:
+ verbose = 'default'
# Loop over all files to be processed
for filename in args:
cr, tp = MacOS.GetCreatorAndType(filename)