summaryrefslogtreecommitdiff
path: root/meta
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-05-06 16:48:28 +0200
committerSaul Wold <sgw@linux.intel.com>2011-05-08 23:56:10 -0700
commitc4365aac40718286d7cc74a0b387cdb8f47e7723 (patch)
treec17750f0a0e7adc1a46c29a3adfa8478b9073e22 /meta
parent74c4c97cda7fbda68f8e6985eaad1c0e20998429 (diff)
downloadopenembedded-core-c4365aac40718286d7cc74a0b387cdb8f47e7723.tar.gz
openembedded-core-c4365aac40718286d7cc74a0b387cdb8f47e7723.tar.bz2
openembedded-core-c4365aac40718286d7cc74a0b387cdb8f47e7723.tar.xz
openembedded-core-c4365aac40718286d7cc74a0b387cdb8f47e7723.zip
package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it shows up on the console
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/package.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index e6b3df7b4..082f233d8 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)