diff options
author | Michael Hanson <hansonorders@verizon.net> | 2011-01-27 02:20:16 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2011-01-27 02:20:16 (GMT) |
commit | d53a8d79c8f8614feb9b9bdc226209d632d4ef1f (patch) | |
tree | 07c99135983741550968b9c29cbf6cc017a22ef7 /build_tools/bin | |
parent | 3c3d23eeb5f2196d6b283065aee82d51ffec4169 (diff) | |
download | linhes_dev-d53a8d79c8f8614feb9b9bdc226209d632d4ef1f.zip |
mp.py: -p is for alt PKGBUILD, --config is for alt /etc/makepkg.conf
Diffstat (limited to 'build_tools/bin')
-rwxr-xr-x | build_tools/bin/mp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build_tools/bin/mp.py b/build_tools/bin/mp.py index c329335..b93e154 100755 --- a/build_tools/bin/mp.py +++ b/build_tools/bin/mp.py @@ -1,5 +1,5 @@ #!/usr/bin/env python2 -# Version 0.6.0 +# Version 0.6.2 import os import sys @@ -316,8 +316,8 @@ def config_file(): global PKGDEST # Check what file will be used for our PKGBUILD - if "--config" in cli_dict: - pkgfile = cli_dict["--config"] + if "-p" in cli_dict: + pkgfile = cli_dict["-p"] else: pkgfile = "PKGBUILD" print "Config File:",pkgfile |