From: Richard Purdie Date: Fri, 10 Mar 2017 10:23:35 +0000 (+0000) Subject: cdrtools-native: Fix when cc is missing X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~22144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6816d62ae37506c8ab7a1294be23da82a2e9d6e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git cdrtools-native: Fix when cc is missing If cc isn't in PATH, the recipe fails. Set a variable to avoid this. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb index ff4d5ac4412..0e0be627108 100644 --- a/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb +++ b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb @@ -14,6 +14,9 @@ SRC_URI[sha256sum] = "ed282eb6276c4154ce6a0b5dee0bdb81940d0cbbfc7d03f769c4735ef5 EXTRA_OEMAKE = "-e MAKEFLAGS=" +# Stop failures when 'cc' can't be found +export ac_cv_prog_CC = "${CC}" + inherit native PV = "3.01a31+really3.01"