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

Koen Kooi koen at dominion.thruhere.net
Fri May 6 15:13:16 UTC 2011


Signed-off-by: Koen Kooi <koen at openembedded.org>
---
 classes/package.bbclass |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/classes/package.bbclass b/classes/package.bbclass
index 901ad9d..2b98049 100644
--- a/classes/package.bbclass
+++ b/classes/package.bbclass
@@ -464,9 +464,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)
 
-- 
1.6.6.1





More information about the Openembedded-devel mailing list