diff options
Diffstat (limited to 'cpp')
-rwxr-xr-x | cpp/install/common/makewindist.py | 8 |
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":
|