From 6e50e0c6b0a7e1922305ba934aa3b8ac6f6051bb Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Fri, 6 May 2011 16:48:28 +0200 Subject: 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 Signed-off-by: Richard Purdie --- meta/classes/package.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta') 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) -- cgit v1.2.3-54-g00ecf