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:34:13 +0000 |
commit | 522c6b376d067243bff20c64a1f6f8700be8e586 (patch) | |
tree | c6e6429c4ddd7bbc22dadcaa84f2e71b244eef61 /meta/recipes-support/gnutls | |
parent | 5664e3c14f342f84d7d310d20f8f94ac71693295 (diff) | |
download | poky-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/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/" | |||
3 | BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" | 3 | BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls" |
4 | DEPENDS = "zlib lzo libtasn1 libgcrypt (>= 1.4.2) libcap readline" | 4 | DEPENDS = "zlib lzo libtasn1 libgcrypt (>= 1.4.2) libcap readline" |
5 | 5 | ||
6 | INC_PR = "r4" | 6 | INC_PR = "r5" |
7 | 7 | ||
8 | LICENSE = "GPLv3+ & LGPLv2.1+" | 8 | LICENSE = "GPLv3+ & LGPLv2.1+" |
9 | LICENSE_${PN} = "LGPLv2.1+" | 9 | LICENSE_${PN} = "LGPLv2.1+" |
@@ -31,7 +31,7 @@ EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \ | |||
31 | " | 31 | " |
32 | do_configure_prepend() { | 32 | do_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 | ||