From: Zac Medico Date: Fri, 10 Sep 2010 05:47:56 +0000 (-0700) Subject: Bug #267103 - In action_build(), check for config file updates in X-Git-Tag: v2.2_rc79~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0c128a031cb9589124e4c3628f3191d419c5518d;p=portage.git Bug #267103 - In action_build(), check for config file updates in /etc/portage and warn if necessary. --- diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py index b76195cb9..6eca451de 100644 --- a/pym/_emerge/actions.py +++ b/pym/_emerge/actions.py @@ -73,6 +73,10 @@ def action_build(settings, trees, mtimedb, if '--usepkgonly' not in myopts: old_tree_timestamp_warn(settings['PORTDIR'], settings) + # It's best for config updates in /etc/portage to be processed + # before we get here, so warn if they're not (bug #267103). + chk_updated_cfg_files(settings['EROOT'], ['/etc/portage']) + # validate the state of the resume data # so that we can make assumptions later. for k in ("resume", "resume_backup"):