package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it shows up on the console

(From OE-Core rev: c4365aac40718286d7cc74a0b387cdb8f47e7723)

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Koen Kooi 2011-05-06 16:48:28 +02:00 committed by Richard Purdie
parent 25f4a0e362
commit 6e50e0c6b0
1 changed files with 2 additions and 2 deletions

View File

@ -676,9 +676,9 @@ python populate_packages () {
unshipped.append(path)
if unshipped != []:
bb.note("the following files were installed but not shipped in any package:")
bb.warn("the following files were installed but not shipped in any package:")
for f in unshipped:
bb.note(" " + f)
bb.warn(" " + f)
bb.build.exec_func("package_name_hook", d)