From: Robert Yang Date: Thu, 7 Aug 2014 03:05:22 +0000 (-0700) Subject: logrotate: fix recompile error X-Git-Tag: 2015-4~2047 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=31de4a9d9ecc532ff6a6f5641852dc412a337cd7;p=openembedded-core.git logrotate: fix recompile error Fixed: NOTE: make -j 32 make: *** No rule to make target `/path/to/sysroot/4.9.0/include/stddef.h', needed by `logrotate.o'. Stop. This happens when upgrade gcc from 4.9.0 to 4.9.1, and the .depend isn't regenerated when recompile, the content of the .depend are: [snip] logrotate.o: /path/to/sysroot/4.9.0/include/stddef.h [snip] And Makefile includes the .depend file if it exists, so there would be errors when /path/to/sysroot/4.9.0/include/stddef.h doesn't exist. Remove .depend will fix the problem. Signed-off-by: Robert Yang Signed-off-by: Saul Wold --- diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.7.bb b/meta/recipes-extended/logrotate/logrotate_3.8.7.bb index b386b85bf6..3a6a2287db 100644 --- a/meta/recipes-extended/logrotate/logrotate_3.8.7.bb +++ b/meta/recipes-extended/logrotate/logrotate_3.8.7.bb @@ -18,6 +18,11 @@ SRC_URI[sha256sum] = "f6ba691f40e30e640efa2752c1f9499a3f9738257660994de70a45fe00 EXTRA_OEMAKE = "" +do_compile_prepend() { + # Make sure the recompile is OK + rm -f ${B}/.depend +} + do_install(){ oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} mkdir -p ${D}${sysconfdir}/logrotate.d