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 23:12:28 +0000 |
commit | 96a5cb41fdec9992a7949eceae0722b7571683d2 (patch) | |
tree | 0c9c7255514888d608f86358fbafad6b26a791b7 | |
parent | 805aca81925a95931ceda8298aa582b57ceba48b (diff) | |
download | poky-96a5cb41fdec9992a7949eceae0722b7571683d2.tar.gz |
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.
(From OE-Core rev: af55727fc1920c4c23476304f57a3720835ec203)
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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): | |||
559 | success = False | 559 | success = False |
560 | status.addresult(e.msg) | 560 | status.addresult(e.msg) |
561 | if success: | 561 | if success: |
562 | bb.note("Your conf/bblayers.conf has been automatically updated.") | 562 | bb.note("Your %s file has been automatically updated." % conffile) |
563 | status.reparse = True | 563 | status.reparse = True |
564 | 564 | ||
565 | def sanity_handle_abichanges(status, d): | 565 | def sanity_handle_abichanges(status, d): |