[OE-core] [PATCH] package.bbclass: fix spurious 'installed but not shipped' warning

Richard Purdie richard.purdie at linuxfoundation.org
Fri Sep 16 16:24:25 UTC 2011


On Fri, 2011-09-16 at 10:28 -0500, Tom Zanussi wrote:
> For packages that have files installed that aren't in a subdirectory,
> the following build WARNING is emitted (this for initramfs-live-boot
> as an example):
> 
> WARNING: For recipe initramfs-live-boot, the following files were
>  installed but not shipped in any package:
> WARNING:   init
> 
> The problem is that the filenames added to the 'seen' array are always
> added with a path separator at the beginning of the filename, but when
> the package dir is walked for comparison, any files at the top-level
> will be missing the beginning path separator and the comparison will
> fail despite the fact that the file was actually packaged.  This
> because the remainder between the dirname and the dvar base name is
> used in the path join and in the case of files at the top-level, the
> remainder is the empty string, where it should be '/' for comparison
> purposes.
> 
> Signed-off-by: Tom Zanussi <tom.zanussi at intel.com>
> ---
>  meta/classes/package.bbclass |    5 ++++-
>  1 files changed, 4 insertions(+), 1 deletions(-)

Good fix, merged to master, thanks.

Richard





More information about the Openembedded-core mailing list