diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-10 10:23:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-10 14:50:11 +0000 |
commit | b94da69e310d4c62a4efe13abc69393271a4f08c (patch) | |
tree | 5c74a95d1c2295fa23e8446165e509271c216f51 /meta/recipes-devtools/cdrtools | |
parent | a39b7e2c504e37fda145c54f48b0eec2cee9c257 (diff) | |
download | poky-b94da69e310d4c62a4efe13abc69393271a4f08c.tar.gz |
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>
Diffstat (limited to 'meta/recipes-devtools/cdrtools')
-rw-r--r-- | meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb b/meta/recipes-devtools/cdrtools/cdrtools-native_3.01.bb index ff4d5ac441..0e0be62710 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 | |||
14 | 14 | ||
15 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | 15 | EXTRA_OEMAKE = "-e MAKEFLAGS=" |
16 | 16 | ||
17 | # Stop failures when 'cc' can't be found | ||
18 | export ac_cv_prog_CC = "${CC}" | ||
19 | |||
17 | inherit native | 20 | inherit native |
18 | 21 | ||
19 | PV = "3.01a31+really3.01" | 22 | PV = "3.01a31+really3.01" |