diff options
author | 2012-05-20 12:48:06 -0500 | |
---|---|---|
committer | 2012-05-21 08:08:17 -0500 | |
commit | 5ff30931990df1200864e1f353060ccc0cfc96e3 (patch) | |
tree | 70a924a8cddb47e4ca7bdb76b032c6aed473e224 /recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb | |
parent | 79ee977daa06920f69552b6b832c50e72341fe28 (diff) | |
download | meta-fsl-arm-5ff30931990df1200864e1f353060ccc0cfc96e3.tar.gz meta-fsl-arm-5ff30931990df1200864e1f353060ccc0cfc96e3.tar.bz2 meta-fsl-arm-5ff30931990df1200864e1f353060ccc0cfc96e3.zip |
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>
Diffstat (limited to 'recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb')
-rw-r--r-- | recipes-graphics/amd-gpu-x11-bin/libz160_11.09.01.bb | 10 |
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 @@ DESCRIPTION = "AMD libz160 gpu driver" LICENSE = "MIT" SECTION = "libs" -PR = "r0" +PR = "r1" #todo: Replace for correct AMD license LIC_FILES_CHKSUM = "file://usr/include/z160.h;endline=28;md5=65dd44cd769091092f38e34cd52cc271" @@ -21,5 +21,9 @@ do_install () { } S = "${WORKDIR}/${PN}-bin-${PV}" -FILES_${PN} = "${libdir}/*.so*" -FILES_${PN}-dev = "${includedir}/*.h" + +# Avoid QA Issue: No GNU_HASH in the elf binary +INSANE_SKIP_${PN} = "ldflags" +INSANE_SKIP_${PN}-dev = "ldflags" +FILES_${PN} = "${libdir}/*.so" +FILES_${PN}-dev = "${includedir}" |