From: Robert Yang Date: Fri, 6 Jun 2014 10:08:51 +0000 (-0400) Subject: libgcrypt: fix do_configure failed X-Git-Tag: 2015-4~2605 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=2d13380c6546bb41afa53227f1571bd2908ceca2;p=openembedded-core.git libgcrypt: fix do_configure failed Fixed: rm: cannot remove `/path/libgcrypt-1.6.1/m4/*.m4': No such file or directory We would meet this error if we stop the configure and run again. Signed-off-by: Robert Yang Signed-off-by: Saul Wold --- diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index e3cd4f8a8b..2b32b7eaed 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc @@ -22,7 +22,7 @@ EXTRA_OECONF = "--disable-asm --with-capabilities" do_configure_prepend () { # Else these could be used in prefernce to those in aclocal-copy - rm ${S}/m4/*.m4 + rm -f ${S}/m4/*.m4 } # libgcrypt.pc is added locally and thus installed here