diff options
author | Patrick Ohly <patrick.ohly@intel.com> | 2016-03-17 17:00:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-20 22:57:57 +0000 |
commit | af55727fc1920c4c23476304f57a3720835ec203 (patch) | |
tree | 07d3676dc5c27ecf3ffab80b4f1cbb1fc13bc964 | |
parent | 7fd08497cf780018fa144a870bdea0e7a69dae20 (diff) | |
download | openembedded-core-af55727fc1920c4c23476304f57a3720835ec203.tar.gz openembedded-core-af55727fc1920c4c23476304f57a3720835ec203.tar.bz2 openembedded-core-af55727fc1920c4c23476304f57a3720835ec203.zip |
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 <patrick.ohly@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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): |