diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-01-18 21:39:16 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-19 11:29:05 +0000 |
commit | 8904e075d4953413edf13c43ee3a10493a6c63bb (patch) | |
tree | 248fde948048d2ab93125790bced5a21bb81c190 /meta/recipes-support/gnutls | |
parent | 0a7171176c6a39dae08d683961bc53dfb7f206e9 (diff) | |
download | openembedded-core-8904e075d4953413edf13c43ee3a10493a6c63bb.tar.gz openembedded-core-8904e075d4953413edf13c43ee3a10493a6c63bb.tar.bz2 openembedded-core-8904e075d4953413edf13c43ee3a10493a6c63bb.zip |
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
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-support/gnutls')
-rw-r--r-- | meta/recipes-support/gnutls/gnutls.inc | 4 |
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/" BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" DEPENDS = "zlib lzo libtasn1 libgcrypt (>= 1.4.2) libcap readline" -INC_PR = "r4" +INC_PR = "r5" LICENSE = "GPLv3+ & LGPLv2.1+" LICENSE_${PN} = "LGPLv2.1+" @@ -31,7 +31,7 @@ EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ " do_configure_prepend() { for dir in . lib libextra; do - rm ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4 + rm -f ${dir}/aclocal.m4 ${dir}/m4/libtool.m4 ${dir}/m4/lt*.m4 done } |