From: Koen Kooi Date: Fri, 6 May 2011 14:48:28 +0000 (+0200) Subject: package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it... X-Git-Tag: 2011-1~1539 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c4365aac40718286d7cc74a0b387cdb8f47e7723;p=openembedded-core.git package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it shows up on the console Signed-off-by: Koen Kooi --- diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index e6b3df7b4f..082f233d88 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -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)