diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-08-14 10:32:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-16 00:03:15 +0100 |
commit | 23d162838b11231008efe8061d8b41b9250c8901 (patch) | |
tree | 77be757247d76065c4cde984d501f261f03663c2 /meta/classes/packagefeed-stability.bbclass | |
parent | d2697f92e9961d76a3e9b429e33d2d0a1e8ac6d9 (diff) | |
download | poky-23d162838b11231008efe8061d8b41b9250c8901.tar.gz |
packagefeed-stability.bbclass: change a bb.plain to bb.note
I could see dozens of "Copying packages for recipe..." messages on the
console during a image build, this is sort of annoying. I would like
them to be dumped into the task log instead, so I can get a cleaner
console and would not miss real important messages.
(From OE-Core rev: 255caaad3574afec6ff5909c770eaee3f74a8155)
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/packagefeed-stability.bbclass')
-rw-r--r-- | meta/classes/packagefeed-stability.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/packagefeed-stability.bbclass b/meta/classes/packagefeed-stability.bbclass index c0e9be549d..48377797c1 100644 --- a/meta/classes/packagefeed-stability.bbclass +++ b/meta/classes/packagefeed-stability.bbclass | |||
@@ -189,7 +189,7 @@ def package_compare_impl(pkgtype, d): | |||
189 | 189 | ||
190 | # Remove all the old files and copy again if docopy | 190 | # Remove all the old files and copy again if docopy |
191 | if docopy: | 191 | if docopy: |
192 | bb.plain('Copying packages for recipe %s' % pn) | 192 | bb.note('Copying packages for recipe %s' % pn) |
193 | pcmanifest = os.path.join(prepath, d.expand('pkg-compare-manifest-${MULTIMACH_TARGET_SYS}-${PN}')) | 193 | pcmanifest = os.path.join(prepath, d.expand('pkg-compare-manifest-${MULTIMACH_TARGET_SYS}-${PN}')) |
194 | try: | 194 | try: |
195 | with open(pcmanifest, 'r') as f: | 195 | with open(pcmanifest, 'r') as f: |