diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-06 16:48:28 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-09 14:09:07 +0100 |
commit | 6e50e0c6b0a7e1922305ba934aa3b8ac6f6051bb (patch) | |
tree | dbf13b0920576ee4053b0e365a22b5c6a690e4f7 /meta/classes | |
parent | 25f4a0e362aa18f060297775aa4591acc8d2b12f (diff) | |
download | poky-6e50e0c6b0a7e1922305ba934aa3b8ac6f6051bb.tar.gz |
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 <koen@dominion.thruhere.net>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | 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 e6b3df7b4f..082f233d88 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -676,9 +676,9 @@ python populate_packages () { | |||
676 | unshipped.append(path) | 676 | unshipped.append(path) |
677 | 677 | ||
678 | if unshipped != []: | 678 | if unshipped != []: |
679 | bb.note("the following files were installed but not shipped in any package:") | 679 | bb.warn("the following files were installed but not shipped in any package:") |
680 | for f in unshipped: | 680 | for f in unshipped: |
681 | bb.note(" " + f) | 681 | bb.warn(" " + f) |
682 | 682 | ||
683 | bb.build.exec_func("package_name_hook", d) | 683 | bb.build.exec_func("package_name_hook", d) |
684 | 684 | ||