diff options
author | Olof Johansson <olof.johansson@axis.com> | 2013-11-22 14:24:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-22 14:08:34 +0000 |
commit | 0dc6c969cc3f728a0e6a6b19268fd4f9f900b2c1 (patch) | |
tree | adb0d49f5d5b92ace542852db083c69530326efa /meta/recipes-devtools/json-c | |
parent | bc6a3cf2c23c001b5f2d812a4ff3ca2b77d5796a (diff) | |
download | poky-0dc6c969cc3f728a0e6a6b19268fd4f9f900b2c1.tar.gz |
json-c: do rm -f on config.status before do_configure
This change adds -f when doing rm on config.status. .config.status is
not always present when doing do_configure, and that would without this
change lead to a fatal error.
(From OE-Core rev: b16d312ce03ae68da46ead3fc855b5879b2013fd)
Signed-off-by: Olof Johansson <olof.johansson@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/json-c')
-rw-r--r-- | meta/recipes-devtools/json-c/json-c_0.11.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/json-c/json-c_0.11.bb b/meta/recipes-devtools/json-c/json-c_0.11.bb index 831f281b69..d1bf0e96e2 100644 --- a/meta/recipes-devtools/json-c/json-c_0.11.bb +++ b/meta/recipes-devtools/json-c/json-c_0.11.bb | |||
@@ -16,5 +16,5 @@ inherit autotools | |||
16 | 16 | ||
17 | do_configure_prepend() { | 17 | do_configure_prepend() { |
18 | # Clean up autoconf cruft that should not be in the tarball | 18 | # Clean up autoconf cruft that should not be in the tarball |
19 | rm ${S}/config.status | 19 | rm -f ${S}/config.status |
20 | } | 20 | } |