On Tue, Apr 9, 2019 at 5:39 PM Khem Raj <[email protected]> wrote: > > On Sun, Apr 7, 2019 at 6:09 AM Oleksandr Kravchuk > <[email protected]> wrote: > > > > Signed-off-by: Oleksandr Kravchuk <[email protected]> > > --- > > .../ncp/{libowfat_0.31.bb => libowfat_0.32.bb} | 4 ++-- > > This is causing ncp build failure > > | ncp.c:8:10: fatal error: 'dns.h' file not found > | #include "dns.h" > | ^~~~~~~ > | 1 error generated. > | make: *** [<builtin>: ncp.o] Error 1 > | make: *** Waiting for unfinished jobs.... > > Can you check why dns.h can't be found ? >
On further look at https://www.fefe.de/libowfat/changes-0.32.txt the build now puts the headers in libowfat/ already so removing setting INCLUDEDIR in libowfat recipe helps something like this --- a/meta-networking/recipes-support/ncp/libowfat_0.32.bb +++ b/meta-networking/recipes-support/ncp/libowfat_0.32.bb @@ -19,7 +19,7 @@ EXTRA_OEMAKE = "\ do_install() { make install \ DESTDIR=${D} \ - INCLUDEDIR=${includedir}/${BPN} \ + INCLUDEDIR=${includedir} \ LIBDIR=${libdir} \ MAN3DIR=${mandir}/man3 } Can you send a v2 ? > > 1 file changed, 2 insertions(+), 2 deletions(-) > > rename meta-networking/recipes-support/ncp/{libowfat_0.31.bb => > > libowfat_0.32.bb} (84%) > > > > diff --git a/meta-networking/recipes-support/ncp/libowfat_0.31.bb > > b/meta-networking/recipes-support/ncp/libowfat_0.32.bb > > similarity index 84% > > rename from meta-networking/recipes-support/ncp/libowfat_0.31.bb > > rename to meta-networking/recipes-support/ncp/libowfat_0.32.bb > > index 4b072f7e7..fba35526d 100644 > > --- a/meta-networking/recipes-support/ncp/libowfat_0.31.bb > > +++ b/meta-networking/recipes-support/ncp/libowfat_0.32.bb > > @@ -7,8 +7,8 @@ LICENSE = "GPLv2" > > LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b" > > > > SRC_URI = "https://www.fefe.de/${BPN}/${BP}.tar.xz" > > -SRC_URI[md5sum] = "120798fab86cfd72dc6b12284d248dd0" > > -SRC_URI[sha256sum] = > > "d1e4ac1cfccbb7dc51d77d96398e6302d229ba7538158826c84cb4254c7e8a12" > > +SRC_URI[md5sum] = "ee015ccf45cb2bc61c942642038c2bdc" > > +SRC_URI[sha256sum] = > > "f4b9b3d9922dc25bc93adedf9e9ff8ddbebaf623f14c8e7a5f2301bfef7998c1" > > > > EXTRA_OEMAKE = "\ > > DIET= \ > > -- > > 2.17.1 > > > > -- > > _______________________________________________ > > Openembedded-devel mailing list > > [email protected] > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
