diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-05-06 16:48:28 +0200 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2011-05-08 23:56:10 -0700 |
commit | c4365aac40718286d7cc74a0b387cdb8f47e7723 (patch) | |
tree | c17750f0a0e7adc1a46c29a3adfa8478b9073e22 /meta | |
parent | 74c4c97cda7fbda68f8e6985eaad1c0e20998429 (diff) | |
download | openembedded-core-c4365aac40718286d7cc74a0b387cdb8f47e7723.tar.gz openembedded-core-c4365aac40718286d7cc74a0b387cdb8f47e7723.tar.bz2 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.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 () { 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) |