summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2012-01-18 21:39:16 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-19 11:34:13 +0000
commit522c6b376d067243bff20c64a1f6f8700be8e586 (patch)
treec6e6429c4ddd7bbc22dadcaa84f2e71b244eef61 /meta/recipes-support
parent5664e3c14f342f84d7d310d20f8f94ac71693295 (diff)
downloadpoky-522c6b376d067243bff20c64a1f6f8700be8e586.tar.gz
gnutls: Fix configure issue wrt to rm
Add -f option so if the files dont exist then we can still continue. Fixes errors like | + do_configure | + for dir in . lib libextra | + rm ./aclocal.m4 ./m4/libtool.m4 './m4/lt*.m4' | rm: cannot remove `./m4/libtool.m4': No such file or directory | rm: cannot remove `./m4/lt*.m4': No such file or directory (From OE-Core rev: 8904e075d4953413edf13c43ee3a10493a6c63bb) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/gnutls/gnutls.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc
index 599154032d..c639b11749 100644
--- a/meta/recipes-support/gnutls/gnutls.inc
+++ b/meta/recipes-support/gnutls/gnutls.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/gnutls/"
3BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" 3BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls"
4DEPENDS = "zlib lzo libtasn1 libgcrypt (>= 1.4.2) libcap readline" 4DEPENDS = "zlib lzo libtasn1 libgcrypt (>= 1.4.2) libcap readline"
5 5
6INC_PR = "r4" 6INC_PR = "r5"
7 7
8LICENSE = "GPLv3+ & LGPLv2.1+" 8LICENSE = "GPLv3+ & LGPLv2.1+"
9LICENSE_${PN} = "LGPLv2.1+" 9LICENSE_${PN} = "LGPLv2.1+"
@@ -31,7 +31,7 @@ EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \
31 " 31 "
32do_configure_prepend() { 32do_configure_prepend() {
33 for dir in . lib libextra; do 33 for dir in . lib libextra; do
34 rm ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4 34 rm -f ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4
35 done 35 done
36} 36}
37 37