package.bbclass: Make unshipped packages message more readable

(From OE-Core rev: bc73fa1256d678c09c0d9b50e0153623861dcf32)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-07-05 13:33:52 +01:00
parent 7a2a24de09
commit e8e6f9df59
1 changed files with 1 additions and 1 deletions

View File

@ -921,7 +921,7 @@ python populate_packages () {
unshipped.append(path)
if unshipped != []:
bb.warn("the following files were installed but not shipped in any package: %s" % pn)
bb.warn("For recipe %s, the following files were installed but not shipped in any package:" % pn)
for f in unshipped:
bb.warn(" " + f)