From: Patrick Ohly Date: Thu, 17 Mar 2016 16:00:56 +0000 (+0100) Subject: sanity.bbclass: fix success message when config file was updated X-Git-Tag: 2016-4~392 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=af55727fc1920c4c23476304f57a3720835ec203;p=openembedded-core.git sanity.bbclass: fix success message when config file was updated The code now iterates over different config files, but always printed a message about conf/bblayers.conf for each file. Signed-off-by: Patrick Ohly Signed-off-by: Ross Burton --- diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 334e362632..2539bd8c1b 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -559,7 +559,7 @@ def sanity_check_conffiles(status, d): success = False status.addresult(e.msg) if success: - bb.note("Your conf/bblayers.conf has been automatically updated.") + bb.note("Your %s file has been automatically updated." % conffile) status.reparse = True def sanity_handle_abichanges(status, d):