[oe-commits] Denis 'GNUtoo' Carikli : fmtools: fix QA staging(GNU hash)

git version control git at git.openembedded.org
Mon Dec 13 21:28:17 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 2b1ee3146f8ca602074c2860b135071ae1de440d
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=2b1ee3146f8ca602074c2860b135071ae1de440d

Author: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>
Date:   Sun Dec 12 23:20:24 2010 +0100

fmtools: fix QA staging(GNU hash)

Without that fix we have:
ERROR: QA Issue with fmtools: No GNU_HASH in the elf binary: '.../work/armv7a-oe-linux-gnueabi/fmtools-1.0.2-r1/packages-split/fmtools/usr/bin/fm'
ERROR: QA Issue with fmtools: No GNU_HASH in the elf binary: '.../work/armv7a-oe-linux-gnueabi/fmtools-1.0.2-r1/packages-split/fmtools/usr/bin/fmscan'
ERROR: QA run found fatal errors. Please consider fixing them.

Note that fmtools Makefile has no way to pass the LDFLAGS to it

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo at no-log.org>

---

 recipes/fmtools/fmtools_1.0.2.bb |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/recipes/fmtools/fmtools_1.0.2.bb b/recipes/fmtools/fmtools_1.0.2.bb
index 2d060cc..8dbef8c 100644
--- a/recipes/fmtools/fmtools_1.0.2.bb
+++ b/recipes/fmtools/fmtools_1.0.2.bb
@@ -1,12 +1,14 @@
 DESCRIPTION = "fmtools - programs for Video for Linux radio cards"
 LICENSE = "GPL"
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://www.stanford.edu/~blp/fmtools/fmtools-1.0.2.tar.gz \
            file://makefile.patch"
 
 inherit autotools
 
+CFLAGS += "${LDFLAGS}"
+
 do_install() {
     install -d ${D}${bindir}
     install -m 0755 ${S}/fm ${D}${bindir}/fm





More information about the Openembedded-commits mailing list