diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-12-18 15:54:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-19 18:08:02 +0000 |
commit | 3ee4015f5b5264d69178f78f0408ab4a225d3877 (patch) | |
tree | 7a7158535bd60ebc78df6eb88eb3c662a1c0f188 /meta | |
parent | 88af91954eabdbe6b49f39de4fa98cda7b876857 (diff) | |
download | poky-3ee4015f5b5264d69178f78f0408ab4a225d3877.tar.gz |
powertop: Fix build for !uclibc
* EXTRA_LDFLAGS isn't defined for !uclibc and configure fails
when it reads it unexpanded, see config.log snippet:
configure:4177: checking whether the C compiler works
configure:4199: i586-oe-linux-gcc -m32 -march=i586 --sysroot=/OE/sysroots/qemux86 -O2 -pipe -g -feliminate-unused-debug-types -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed ${EXTRA_LDFLAGS} conftest.c >&5
i586-oe-linux-gcc: error: ${EXTRA_LDFLAGS}: No such file or directory
configure:4203: $? = 1
configure:4241: result: no
(From OE-Core rev: a3e9b391e1024d6d2e256b75c214d34e6693e332)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/powertop/powertop_2.7.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-kernel/powertop/powertop_2.7.bb b/meta/recipes-kernel/powertop/powertop_2.7.bb index dce5d715fd..5ba07e9ab9 100644 --- a/meta/recipes-kernel/powertop/powertop_2.7.bb +++ b/meta/recipes-kernel/powertop/powertop_2.7.bb | |||
@@ -14,8 +14,9 @@ SRC_URI[sha256sum] = "8d4b1490e2baad4467c0ded3c423db4472dcbf7b2dd8f8f2a928f54047 | |||
14 | inherit autotools gettext pkgconfig | 14 | inherit autotools gettext pkgconfig |
15 | 15 | ||
16 | # we need to explicitly link with libintl in uClibc systems | 16 | # we need to explicitly link with libintl in uClibc systems |
17 | LDFLAGS += "${EXTRA_LDFLAGS}" | 17 | EXTRA_LDFLAGS ?= "" |
18 | EXTRA_LDFLAGS_libc-uclibc = "-lintl" | 18 | EXTRA_LDFLAGS_libc-uclibc = "-lintl" |
19 | LDFLAGS += "${EXTRA_LDFLAGS}" | ||
19 | 20 | ||
20 | # we do not want libncursesw if we can | 21 | # we do not want libncursesw if we can |
21 | do_configure_prepend() { | 22 | do_configure_prepend() { |