diff options
author | Paul Barker <pbarker@toganlabs.com> | 2017-03-13 17:48:57 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-03-16 23:34:33 +0100 |
commit | 82b589603ce1283f0e19554a43379741f05b3c62 (patch) | |
tree | d650b25ff4425a6606c0b5d3b2963258f1e3678b | |
parent | ebd31fd8d519d3e2d26dd14e72d36300f433cfa0 (diff) | |
download | meta-openembedded-82b589603ce1283f0e19554a43379741f05b3c62.tar.gz |
toybox: Fix configure failure
do_configure is currently failing as HOSTCC defaults to just 'cc' in the
toybox Makefile.
Signed-off-by: Paul Barker <pbarker@toganlabs.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-core/toybox/toybox_0.7.2.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/toybox/toybox_0.7.2.bb b/meta-oe/recipes-core/toybox/toybox_0.7.2.bb index 93ef45bb5..84146584d 100644 --- a/meta-oe/recipes-core/toybox/toybox_0.7.2.bb +++ b/meta-oe/recipes-core/toybox/toybox_0.7.2.bb | |||
@@ -16,6 +16,8 @@ SECTION = "base" | |||
16 | 16 | ||
17 | TOYBOX_BIN = "generated/unstripped/toybox" | 17 | TOYBOX_BIN = "generated/unstripped/toybox" |
18 | 18 | ||
19 | EXTRA_OEMAKE = 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"' | ||
20 | |||
19 | do_configure() { | 21 | do_configure() { |
20 | oe_runmake defconfig | 22 | oe_runmake defconfig |
21 | 23 | ||