diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-06-06 06:08:51 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-10 17:24:18 +0100 |
commit | 7d8a0aff0dada8b84728d091f35f4c5c2d1bc570 (patch) | |
tree | 00973bfd6d0b0d3e29ad14874108a0e6f829330a /meta/recipes-support | |
parent | 63f3c395055edd72eb93dfb08e5bda3c013aefde (diff) | |
download | poky-7d8a0aff0dada8b84728d091f35f4c5c2d1bc570.tar.gz |
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.
(From OE-Core rev: 2d13380c6546bb41afa53227f1571bd2908ceca2)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/libgcrypt/libgcrypt.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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" | |||
22 | 22 | ||
23 | do_configure_prepend () { | 23 | do_configure_prepend () { |
24 | # Else these could be used in prefernce to those in aclocal-copy | 24 | # Else these could be used in prefernce to those in aclocal-copy |
25 | rm ${S}/m4/*.m4 | 25 | rm -f ${S}/m4/*.m4 |
26 | } | 26 | } |
27 | 27 | ||
28 | # libgcrypt.pc is added locally and thus installed here | 28 | # libgcrypt.pc is added locally and thus installed here |