From patchwork Mon May 9 06:59:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [14/20] package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it shows up on the console Date: Mon, 09 May 2011 06:59:52 -0000 From: Saul Wold X-Patchwork-Id: 3457 Message-Id: To: openembedded-core@lists.openembedded.org Cc: From: Koen Kooi Signed-off-by: Koen Kooi --- meta/classes/package.bbclass | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index e6b3df7..082f233 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)