There is no point in having doc, manpage or info files in the staging directory. They just bloat the sstate package size and waste time as they're copied around.
We never used to stage these but it crept in when we started staging $datadir. This patch corrects that so they're removed and stop making it into the sysroot. Signed-off-by: Richard Purdie <[email protected]> --- diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index ee5a025..6540349 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass @@ -51,6 +51,8 @@ sysroot_stage_dirs() { sysroot_stage_libdir $from${base_libdir} $to${base_libdir} fi sysroot_stage_dir $from${datadir} $to${datadir} + # We don't care about docs/info/manpages + rm -rf $to${mandir}/ $to${docdir}/ $to${infodir}/ } sysroot_stage_all() { _______________________________________________ Openembedded-core mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
