diff options
| author | Michael Hanson <hansonorders@verizon.net> | 2011-01-06 21:24:26 (GMT) | 
|---|---|---|
| committer | Michael Hanson <hansonorders@verizon.net> | 2011-01-06 21:24:26 (GMT) | 
| commit | 1d0f7353d1a4178ddd25d8cfffa9ce6f5dd491c1 (patch) | |
| tree | 2bcfab1e11103006f577464bd37fc362b7016ef9 | |
| parent | 96a17659af47082048be0e5e6325d4fd44b3ef9c (diff) | |
| download | linhes_dev-1d0f7353d1a4178ddd25d8cfffa9ce6f5dd491c1.zip | |
mp.py: filtered out -g option from makepkg command.
| -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():  | 
