From patchwork Wed Dec 5 11:40:06 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: libaio: Remove QA warning: No GNU_HASH in the elf binary Date: Wed, 05 Dec 2012 11:40:06 -0000 From: Shakeel, Muhammad X-Patchwork-Id: 40415 Message-Id: <1354707606-7374-1-git-send-email-muhammad_shakeel@mentor.com> To: openembedded-core@lists.openembedded.org Cc: Christopher Larson From: Muhammad Shakeel Update the LINK_FLAGS in the Makefile to remove warning: QA Issue: No GNU_HASH in the elf binary Signed-off-by: Christopher Larson Signed-off-by: Muhammad Shakeel --- meta/recipes-extended/libaio/libaio_0.3.109.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta/recipes-extended/libaio/libaio_0.3.109.bb b/meta/recipes-extended/libaio/libaio_0.3.109.bb index 161b712..0712d04 100644 --- a/meta/recipes-extended/libaio/libaio_0.3.109.bb +++ b/meta/recipes-extended/libaio/libaio_0.3.109.bb @@ -18,6 +18,10 @@ SRC_URI[sha256sum] = "bf4a457253cbaab215aea75cb6e18dc8d95bbd507e9920661ff9bdd288 EXTRA_OEMAKE =+ "prefix=${prefix} includedir=${includedir} libdir=${libdir}" +do_configure () { + sed -i 's#LINK_FLAGS=.*#LINK_FLAGS=$(LDFLAGS)#' src/Makefile +} + do_install () { oe_runmake install DESTDIR=${D} }