From 1d0f7353d1a4178ddd25d8cfffa9ce6f5dd491c1 Mon Sep 17 00:00:00 2001 From: Michael Hanson Date: Thu, 6 Jan 2011 13:24:26 -0800 Subject: mp.py: filtered out -g option from makepkg command. --- build_tools/bin/mp.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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(): -- cgit v0.12