diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-05 13:33:52 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-05 13:36:56 +0100 |
commit | e8e6f9df5968dc6f176fd347bebbea03d259925e (patch) | |
tree | 6328aacb93554d687c8d8776a73ebf117fd9fbf3 /meta | |
parent | 7a2a24de094ce8f2e2068bbee6709dfc2cdc69b9 (diff) | |
download | poky-e8e6f9df5968dc6f176fd347bebbea03d259925e.tar.gz |
package.bbclass: Make unshipped packages message more readable
(From OE-Core rev: bc73fa1256d678c09c0d9b50e0153623861dcf32)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 0161c68054..f2950e25c2 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -921,7 +921,7 @@ python populate_packages () { | |||
921 | unshipped.append(path) | 921 | unshipped.append(path) |
922 | 922 | ||
923 | if unshipped != []: | 923 | if unshipped != []: |
924 | bb.warn("the following files were installed but not shipped in any package: %s" % pn) | 924 | bb.warn("For recipe %s, the following files were installed but not shipped in any package:" % pn) |
925 | for f in unshipped: | 925 | for f in unshipped: |
926 | bb.warn(" " + f) | 926 | bb.warn(" " + f) |
927 | 927 | ||