diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2014-08-13 19:46:22 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-15 18:19:50 +0100 |
commit | b43b6bae5b164f641233dcd2e373f3cae26273a6 (patch) | |
tree | 8f32543877946b4e844d3d058ea50632f677aa8f | |
parent | e16c968ffb96fac3177bb885872c2b5cdde87239 (diff) | |
download | openembedded-core-b43b6bae5b164f641233dcd2e373f3cae26273a6.tar.gz openembedded-core-b43b6bae5b164f641233dcd2e373f3cae26273a6.tar.bz2 openembedded-core-b43b6bae5b164f641233dcd2e373f3cae26273a6.zip |
libgcrypt: Do not remove m4 files so aggressively
Removing all m4 files in the m4 directory led to a number of non-fatal
errors while running configure when the expected m4 macros could not
be found.
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libgcrypt/libgcrypt.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/libgcrypt/libgcrypt.inc b/meta/recipes-support/libgcrypt/libgcrypt.inc index fa2bc38284..43e0291a7b 100644 --- a/meta/recipes-support/libgcrypt/libgcrypt.inc +++ b/meta/recipes-support/libgcrypt/libgcrypt.inc @@ -23,8 +23,8 @@ inherit autotools-brokensep texinfo binconfig-disabled pkgconfig EXTRA_OECONF = "--disable-asm --with-capabilities" do_configure_prepend () { - # Else these could be used in prefernce to those in aclocal-copy - rm -f ${S}/m4/*.m4 + # Else this could be used in preference to the one in aclocal-copy + rm -f ${S}/m4/gpg-error.m4 } # libgcrypt.pc is added locally and thus installed here |