diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-10-09 22:55:06 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-10 16:44:31 +0100 |
commit | 6ec3a0bd91ac8bbf336d3aad698ac3de3997e6b3 (patch) | |
tree | 4353ed338dd684cfe69f4b9762c1a13948d3048d | |
parent | ddf7d2bef8442ac93ca4f6b5f1d72ce851a8c99e (diff) | |
download | poky-6ec3a0bd91ac8bbf336d3aad698ac3de3997e6b3.tar.gz |
libassuan: fix for rebuild
Fixed when rebuild:
rm: cannot remove `/path/to/2.1.2-r0/libassuan-2.1.2/m4/*.m4': No such file or directory
The files may not exist when rebuild.
(From OE-Core rev: f04576c761c568083be1143f421e29fc2365846a)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libassuan/libassuan_2.1.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/libassuan/libassuan_2.1.2.bb b/meta/recipes-support/libassuan/libassuan_2.1.2.bb index 6d89107f32..97dec6a76a 100644 --- a/meta/recipes-support/libassuan/libassuan_2.1.2.bb +++ b/meta/recipes-support/libassuan/libassuan_2.1.2.bb | |||
@@ -22,5 +22,5 @@ inherit autotools texinfo binconfig-disabled pkgconfig | |||
22 | 22 | ||
23 | do_configure_prepend () { | 23 | do_configure_prepend () { |
24 | # Else these could be used in prefernce to those in aclocal-copy | 24 | # Else these could be used in prefernce to those in aclocal-copy |
25 | rm ${S}/m4/*.m4 | 25 | rm -f ${S}/m4/*.m4 |
26 | } | 26 | } |