diff options
author | Michael Hanson <hansonorders@verizon.net> | 2011-01-26 23:37:44 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2011-01-26 23:37:44 (GMT) |
commit | 371bb346d176c9f407299cf0db2a73fe13de9ccc (patch) | |
tree | 29b10578658d0e0c9b69b189a27eea1ece5402d3 /build_tools/bin | |
parent | 162d99ab0c3be7e1eb443bae8940d7d13947968c (diff) | |
download | linhes_dev-371bb346d176c9f407299cf0db2a73fe13de9ccc.zip |
mp.py: Add --holdver by default
Diffstat (limited to 'build_tools/bin')
-rwxr-xr-x | build_tools/bin/mp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_tools/bin/mp.py b/build_tools/bin/mp.py index 46e1974..caab80f 100755 --- a/build_tools/bin/mp.py +++ b/build_tools/bin/mp.py @@ -1,5 +1,5 @@ #!/usr/bin/env python2 -# Version 0.5 +# Version 0.5.1 import os import sys @@ -95,7 +95,7 @@ def commandline(): clparser.add_option("--forcever", action="store_true", default=False, help="This is a hidden option that should not be used unless you really know what you are doing.") clparser.add_option("-g", "--geninteg", action="store_true", default=False, help="For each source file in the source array of PKGBUILD, download the file if required and generate integrity checks.") clparser.add_option("--skipinteg", action="store_true", default=False, help="Do not perform any integrity checks, just print a warning instead.") - clparser.add_option("--holdver", action="store_true", default=False, help="Prevents makepkg from automatically bumping the pkgver to the latest revision number in the package's development tree.") + clparser.add_option("--holdver", action="store_true", default=True, help="Prevents makepkg from automatically bumping the pkgver to the latest revision number in the package's development tree.") clparser.add_option("-i", "--install", action="store_true", default=False, help="Install or upgrade the package after a successful build.") clparser.add_option("-L", "--log", action="store_true", default=True, help="Enable makepkg build logging.") clparser.add_option("-m", "--nocolor", action="store_true", default=False, help="Disable color in output messages.") |