cdrtools-native: Fix when cc is missing

If cc isn't in PATH, the recipe fails. Set a variable to avoid this.

(From OE-Core rev: a6816d62ae37506c8ab7a1294be23da82a2e9d6e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2017-03-10 10:23:35 +00:00
parent a39b7e2c50
commit b94da69e31
1 changed files with 3 additions and 0 deletions

View File

@ -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"