The previous do_install is empty and do nothing. Unset variables datadir and mandir, use pimd's default set. So it could install doc files correctly.
Signed-off-by: Hongxu Jia <[email protected]> --- meta-networking/recipes-support/pimd/pimd_2.1.8.bb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta-networking/recipes-support/pimd/pimd_2.1.8.bb b/meta-networking/recipes-support/pimd/pimd_2.1.8.bb index da097ce..f032361 100644 --- a/meta-networking/recipes-support/pimd/pimd_2.1.8.bb +++ b/meta-networking/recipes-support/pimd/pimd_2.1.8.bb @@ -8,3 +8,10 @@ SRC_URI[md5sum] = "a12448bc7c9bfcebf51a13ebf1ffa962" SRC_URI[sha256sum] = "01016940543a0a6131d4e6c91b595d47e187012c59a298eec14c3dbc38564b3a" CFLAGS += "-I ${S}/include " + +do_install() { + unset datadir + unset mandir + oe_runmake 'DESTDIR=${D}' install +} + -- 1.9.1 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
