From 516c78090f3668c4c4ed131c51f9354e8b9400d0 Mon Sep 17 00:00:00 2001 From: Jon Turney Date: Mon, 5 Dec 2022 11:50:18 +0000 Subject: Make mksetupini continue to work for legacy x86 architecture --- calm/mksetupini.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calm/mksetupini.py b/calm/mksetupini.py index d788559..170311b 100755 --- a/calm/mksetupini.py +++ b/calm/mksetupini.py @@ -131,7 +131,7 @@ def main(): disable_check_choices = choiceList(['missing-curr', 'missing-depended-package', 'missing-obsoleted-package', 'missing-required-package', 'curr-most-recent']) parser = argparse.ArgumentParser(description='Make setup.ini') - parser.add_argument('--arch', action='store', required=True, choices=common_constants.ARCHES) + parser.add_argument('--arch', action='store', required=True, choices=common_constants.ARCHES + common_constants.ARCHIVED_ARCHES) parser.add_argument('--disable-check', action=flatten_append, help='checks to disable', type=disable_check_choices, default=[], metavar=disable_check_choices.help()) parser.add_argument('--inifile', '-u', action='store', help='output filename', required=True) parser.add_argument('--okmissing', action='append', help='superseded by --disable-check', choices=['curr', 'depended-package', 'obsoleted-package', 'required-package']) -- cgit v1.2.3