From: Olof Johansson Date: Fri, 22 Nov 2013 13:24:34 +0000 (+0100) Subject: json-c: do rm -f on config.status before do_configure X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~35361 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b16d312ce03ae68da46ead3fc855b5879b2013fd;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Olof Johansson Signed-off-by: Richard Purdie --- 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 831f281b696..d1bf0e96e27 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 do_configure_prepend() { # Clean up autoconf cruft that should not be in the tarball - rm ${S}/config.status + rm -f ${S}/config.status }