summaryrefslogtreecommitdiffstats
path: root/build_tools
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2011-01-06 21:24:26 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2011-01-06 21:24:26 (GMT)
commit1d0f7353d1a4178ddd25d8cfffa9ce6f5dd491c1 (patch)
tree2bcfab1e11103006f577464bd37fc362b7016ef9 /build_tools
parent96a17659af47082048be0e5e6325d4fd44b3ef9c (diff)
downloadlinhes_dev-1d0f7353d1a4178ddd25d8cfffa9ce6f5dd491c1.zip
mp.py: filtered out -g option from makepkg command.
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/bin/mp.py6
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():