diff options
-rwxr-xr-x | bin/repoman | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/repoman b/bin/repoman index 2da6bea86..0c45724bd 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1130,6 +1130,13 @@ for x in scanlist: config_profile_path=profdir, config_incrementals=portage_const.INCREMENTALS) arch_caches[prof[0]] = dep_settings + while True: + try: + # Protect ACCEPT_KEYWORDS from config.regenerate() + # (just in case) + dep_settings.incrementals.remove("ACCEPT_KEYWORDS") + except ValueError: + break trees["/"]["porttree"].settings = dep_settings portdb.mysettings = dep_settings |