diff options
Diffstat (limited to 'build_tools')
-rwxr-xr-x | build_tools/bin/mp.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build_tools/bin/mp.py b/build_tools/bin/mp.py index 77f73c8..068b089 100755 --- a/build_tools/bin/mp.py +++ b/build_tools/bin/mp.py @@ -138,9 +138,13 @@ def commandline(): makepkg_cmd.extend(cli_list) makepkg_cmd.extend(final_dict) - # Remove bump option if it exists + # Remove bump option from makepkg command if it exists if "--bump" in makepkg_cmd: makepkg_cmd.remove("--bump") + # Remove --geninteg option (if it exists) from makepkg command. + # Checking for *sums is done automaticly by mp.py + if "--geninteg" in makepkg_cmd: + makepkg_cmd.remove("--geninteg") print "Makepkg Command:",makepkg_cmd def bump_pkg(): |