]> code.ossystems Code Review - openembedded-core.git/commitdiff
package.bbclass: convert unpackaged file message from 'info' to 'warn' so that it...
authorKoen Kooi <koen@dominion.thruhere.net>
Fri, 6 May 2011 14:48:28 +0000 (16:48 +0200)
committerSaul Wold <sgw@linux.intel.com>
Mon, 9 May 2011 06:56:10 +0000 (23:56 -0700)
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
meta/classes/package.bbclass

index e6b3df7b4f46facee0cafcb23191581f5973deee..082f233d8847b28a9837ea5f6afd51d4c15b4052 100644 (file)
@@ -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)