summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Alonso <aalonso00@gmail.com>2012-05-20 12:48:06 -0500
committerAdrian Alonso <aalonso00@gmail.com>2012-05-21 08:08:17 -0500
commit5ff30931990df1200864e1f353060ccc0cfc96e3 (patch)
tree70a924a8cddb47e4ca7bdb76b032c6aed473e224
parent79ee977daa06920f69552b6b832c50e72341fe28 (diff)
downloadmeta-fsl-arm-5ff30931990df1200864e1f353060ccc0cfc96e3.tar.gz
libz160: avoid QA error No GNU_HASH in elf binary
* Avoid QA error by skip the QA test for ldflags As this is prebuilt library Signed-off-by: Adrian Alonso <aalonso00@gmail.com>
-rw-r--r--recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb10
1 files changed, 7 insertions, 3 deletions
diff --git a/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb b/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb
index a02ae34..b2cfb2d 100644
--- a/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb
+++ b/recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb
@@ -4,7 +4,7 @@
4DESCRIPTION = "AMD libz160 gpu driver" 4DESCRIPTION = "AMD libz160 gpu driver"
5LICENSE = "MIT" 5LICENSE = "MIT"
6SECTION = "libs" 6SECTION = "libs"
7PR = "r0" 7PR = "r1"
8 8
9#todo: Replace for correct AMD license 9#todo: Replace for correct AMD license
10LIC_FILES_CHKSUM = "file://usr/include/z160.h;endline=28;md5=65dd44cd769091092f38e34cd52cc271" 10LIC_FILES_CHKSUM = "file://usr/include/z160.h;endline=28;md5=65dd44cd769091092f38e34cd52cc271"
@@ -21,5 +21,9 @@ do_install () {
21} 21}
22 22
23S = "${WORKDIR}/${PN}-bin-${PV}" 23S = "${WORKDIR}/${PN}-bin-${PV}"
24FILES_${PN} = "${libdir}/*.so*" 24
25FILES_${PN}-dev = "${includedir}/*.h" 25# Avoid QA Issue: No GNU_HASH in the elf binary
26INSANE_SKIP_${PN} = "ldflags"
27INSANE_SKIP_${PN}-dev = "ldflags"
28FILES_${PN} = "${libdir}/*.so"
29FILES_${PN}-dev = "${includedir}"