diff options
author | Ross Burton <ross.burton@intel.com> | 2012-10-25 14:07:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-25 17:50:19 +0100 |
commit | ad39133c4c61657d4d27fd1b8490014705dcc5b8 (patch) | |
tree | 48455823afa1acdfdae78fd2716bdf7bae933432 /meta | |
parent | c65e88b3f20627d7e49e0306f336eee3fb256d1e (diff) | |
download | poky-ad39133c4c61657d4d27fd1b8490014705dcc5b8.tar.gz |
diffutils: fix rebuilds
If diffutils rebuilds it tries to remove with "rm" files that don't exist
anymore, resulting in an error.
Use rm -f so the removal always succeeds.
(From OE-Core rev: becd38412a95f3f9f6c3450a87a7204be032d2e6)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/diffutils/diffutils_3.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/diffutils/diffutils_3.2.bb b/meta/recipes-extended/diffutils/diffutils_3.2.bb index dc8719089c..400c8a6b3f 100644 --- a/meta/recipes-extended/diffutils/diffutils_3.2.bb +++ b/meta/recipes-extended/diffutils/diffutils_3.2.bb | |||
@@ -6,7 +6,7 @@ require diffutils.inc | |||
6 | do_configure_prepend () { | 6 | do_configure_prepend () { |
7 | # Need to remove gettext macros with weird mix of versions | 7 | # Need to remove gettext macros with weird mix of versions |
8 | for i in codeset.m4 gettext_gl.m4 intlmacosx.m4 inttypes-pri.m4 lib-ld_gl.m4 lib-prefix_gl.m4 po_gl.m4 ssize_t.m4 wchar_t.m4 wint_t.m4; do | 8 | for i in codeset.m4 gettext_gl.m4 intlmacosx.m4 inttypes-pri.m4 lib-ld_gl.m4 lib-prefix_gl.m4 po_gl.m4 ssize_t.m4 wchar_t.m4 wint_t.m4; do |
9 | rm ${S}/m4/$i | 9 | rm -f ${S}/m4/$i |
10 | done | 10 | done |
11 | } | 11 | } |
12 | 12 | ||