diff options
-rwxr-xr-x | mgagnome | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1522,9 +1522,10 @@ def main(): subparser.add_argument("-f", "--force", action="store_true") subparser.add_argument("-a", "--all", action="store_true", dest="all", help="checkout all Downstream packages") - subparser.add_argument("--no-convert-devel", action="store_false", dest="pkgconfig") + subparser.add_argument("--pkgconfig", action="store_true", dest="pkgconfig", + help="convert -devel buildrequirements to pkgconfig if possible") subparser.set_defaults( - func=cmd_clean_spec, doit=False, pkgconfig=True, all=False, force=False + func=cmd_clean_spec, doit=False, pkgconfig=False, all=False, force=False ) subparser = subparsers.add_parser('check-version', help='check if spec version and downstream version match') |