diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-12-09 18:10:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-10 17:42:41 +0000 |
commit | 7b2be6012e74c10f50d8a537743f693e86936451 (patch) | |
tree | c90d65961eb4406f003373e29d0e900f09403f62 /meta/recipes-devtools/makedevs | |
parent | 8760307297bd67c333c0791f5055eace6d9a5b5e (diff) | |
download | poky-7b2be6012e74c10f50d8a537743f693e86936451.tar.gz |
makedevs: Respect LDFLAGS
* fixes ERROR: QA Issue: No GNU_HASH in the elf binary
(From OE-Core rev: 76e01095d5515e7c2605b480d5c47a4661ef72f2)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/makedevs')
-rw-r--r-- | meta/recipes-devtools/makedevs/makedevs_1.0.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/makedevs/makedevs_1.0.0.bb b/meta/recipes-devtools/makedevs/makedevs_1.0.0.bb index 6e197b6e74..17b9fcec03 100644 --- a/meta/recipes-devtools/makedevs/makedevs_1.0.0.bb +++ b/meta/recipes-devtools/makedevs/makedevs_1.0.0.bb | |||
@@ -13,7 +13,7 @@ do_configure() { | |||
13 | } | 13 | } |
14 | 14 | ||
15 | do_compile() { | 15 | do_compile() { |
16 | ${CC} ${CFLAGS} -o ${S}/makedevs ${S}/makedevs.c | 16 | ${CC} ${CFLAGS} ${LDFLAGS} -o ${S}/makedevs ${S}/makedevs.c |
17 | } | 17 | } |
18 | 18 | ||
19 | do_install() { | 19 | do_install() { |