git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1c581c
)
gnutls: don't fail on missing files we try to rm
author
Koen Kooi
<koen@openembedded.org>
Mon, 18 Oct 2010 13:39:24 +0000
(15:39 +0200)
committer
Koen Kooi
<koen@openembedded.org>
Mon, 18 Oct 2010 13:39:24 +0000
(15:39 +0200)
This is also needed when doing -c configure -f twice in a row
recipes/gnutls/gnutls_2.10.1.bb
patch
|
blob
|
history
diff --git
a/recipes/gnutls/gnutls_2.10.1.bb
b/recipes/gnutls/gnutls_2.10.1.bb
index
84efb1f
..
86c13ed
100644
(file)
--- a/
recipes/gnutls/gnutls_2.10.1.bb
+++ b/
recipes/gnutls/gnutls_2.10.1.bb
@@
-1,6
+1,6
@@
require gnutls.inc
-PR = "${INC_PR}.
2
"
+PR = "${INC_PR}.
3
"
LICENSE_${PN}-extra = "GPLv3"
@@
-16,9
+16,9
@@
do_configure_prepend() {
MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4"
for i in ${MACROS}; do
- rm m4/$i
- rm lib/m4/$i
- rm libextra/m4/$i
+ rm
-f
m4/$i
+ rm
-f
lib/m4/$i
+ rm
-f
libextra/m4/$i
done
}