From 2d13380c6546bb41afa53227f1571bd2908ceca2 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Fri, 6 Jun 2014 06:08:51 -0400 Subject: 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 --- meta/recipes-support/libgcrypt/libgcrypt.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') 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 -- cgit 1.2.3-korg