mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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:
committed by
Richard Purdie
parent
25f4a0e362
commit
6e50e0c6b0
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user