aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-05-06 23:13:16 +0000
committerPhilip Balister <philip@balister.org>2011-05-06 13:28:25 -0400
commit1bdfd7d2bfa20aa40d68071e9c502e2f8b2c9791 (patch)
treef79b96d1084fad32b21a851155c2265d4852e87f /classes
parentdaab5afcad63ccb9fa4029a628d50012728f430d (diff)
downloadopenembedded-1bdfd7d2bfa20aa40d68071e9c502e2f8b2c9791.tar.gz
package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it shows up on the console
Signed-off-by: Koen Kooi <koen@openembedded.org> Acked-by: Philip Balister <philip@balister.org> Acked-by: Eric BĂ©nard <eric@eukrea.com> Signed-off-by: Philip Balister <philip@balister.org>
Diffstat (limited to 'classes')
-rw-r--r--classes/package.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass
index 901ad9d1c3..2b98049b71 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)