[oe-commits] Robert Yang : libnewt: fix recompile error

git at git.openembedded.org git at git.openembedded.org
Mon Aug 11 09:56:36 UTC 2014


Module: openembedded-core.git
Branch: master-next
Commit: bf2f8abff4eb55cd960065eaba032c96068acf08
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=bf2f8abff4eb55cd960065eaba032c96068acf08

Author: Robert Yang <liezhi.yang at windriver.com>
Date:   Wed Aug  6 20:05:22 2014 -0700

libnewt: 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 `test.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]
test.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 <liezhi.yang at windriver.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/recipes-extended/newt/libnewt_0.52.17.bb | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/recipes-extended/newt/libnewt_0.52.17.bb b/meta/recipes-extended/newt/libnewt_0.52.17.bb
index 09b017e..28d5cf1 100644
--- a/meta/recipes-extended/newt/libnewt_0.52.17.bb
+++ b/meta/recipes-extended/newt/libnewt_0.52.17.bb
@@ -46,4 +46,9 @@ do_configure_prepend() {
     sh autogen.sh
 }
 
+do_compile_prepend() {
+    # Make sure the recompile is OK
+    rm -f ${B}/.depend
+}
+
 FILES_whiptail = "${bindir}/whiptail"



More information about the Openembedded-commits mailing list