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

git version control git at git.openembedded.org
Mon May 9 11:30:50 UTC 2011


Module: openembedded-core.git
Branch: master
Commit: c4365aac40718286d7cc74a0b387cdb8f47e7723
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=c4365aac40718286d7cc74a0b387cdb8f47e7723

Author: Koen Kooi <koen at dominion.thruhere.net>
Date:   Fri May  6 16:48:28 2011 +0200

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

Signed-off-by: Koen Kooi <koen at dominion.thruhere.net>

---

 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)
 





More information about the Openembedded-commits mailing list