summaryrefslogtreecommitdiff
path: root/cpp/install/common/makewindist.py
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2005-10-05 12:02:31 +0000
committerBrent Eagles <brent@zeroc.com>2005-10-05 12:02:31 +0000
commitc88f3046d68bb74d510f411fea614fa79b20ab1a (patch)
treed56dc0f290002e9343bc6dbd9959dc097b7020bd /cpp/install/common/makewindist.py
parentAdded support for enabling/disabling servers. (diff)
downloadice-c88f3046d68bb74d510f411fea614fa79b20ab1a.tar.bz2
ice-c88f3046d68bb74d510f411fea614fa79b20ab1a.tar.xz
ice-c88f3046d68bb74d510f411fea614fa79b20ab1a.zip
- Changing default behavior from clean to 'skip-clean' to make it more
likely that big major builds don't get trashed by accident.
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-xcpp/install/common/makewindist.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py
index 705302ffce8..32754d8d8cf 100755
--- a/cpp/install/common/makewindist.py
+++ b/cpp/install/common/makewindist.py
@@ -278,7 +278,7 @@ def main():
#
try:
optionList, args = getopt.getopt(
- sys.argv[1:], "h:", [ "help", "skip-clean", "skip-build", "skip-installer" ])
+ sys.argv[1:], "h:", [ "help", "clean", "skip-build", "skip-installer" ])
except getopt.GetoptError:
usage()
sys.exit(2)
@@ -286,7 +286,7 @@ def main():
#
# Set a few defaults.
#
- clean = True
+ clean = False
build = True
installer = True
@@ -294,8 +294,8 @@ def main():
if o in ("-h", "--help"):
usage()
sys.exit()
- elif o == "--skip-clean":
- clean = False
+ elif o == "--clean":
+ clean = True
elif o == "--skip-build":
build = False
elif o == "--skip-installer":