summaryrefslogtreecommitdiffstats
path: root/recipes-multimedia/libfslcodec
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2013-03-27 15:03:53 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2013-03-27 15:03:53 -0300
commitf4e019f1fedd1fa1f89b5e4e9b852a0529102e3a (patch)
tree79510972b65c43346d986a37acc38db84ac44cdc /recipes-multimedia/libfslcodec
parent669267a7be9e50b0fd26c77f309a7d6ce12cd4be (diff)
downloadmeta-fsl-arm-f4e019f1fedd1fa1f89b5e4e9b852a0529102e3a.tar.gz
libfslcodec: Add 'textrel' in INSANE_SKIP to avoid known warnings
The binaries has relocation code inside text section which is not a good practice however this is a known issue and we shouldn't bother user with many warnings during the build for it as it might end covering real issues. Change-Id: Id027c7c7bd05bb7aa44150892d92f7ea49d2e3a8 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-multimedia/libfslcodec')
-rw-r--r--recipes-multimedia/libfslcodec/libfslcodec_3.0.5.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-multimedia/libfslcodec/libfslcodec_3.0.5.bb b/recipes-multimedia/libfslcodec/libfslcodec_3.0.5.bb
index 93b4370..adaf7db 100644
--- a/recipes-multimedia/libfslcodec/libfslcodec_3.0.5.bb
+++ b/recipes-multimedia/libfslcodec/libfslcodec_3.0.5.bb
@@ -48,7 +48,7 @@ python populate_packages_prepend() {
48 # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have 48 # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have
49 # the source we cannot fix it. Disable the insane check for now. 49 # the source we cannot fix it. Disable the insane check for now.
50 for p in d.getVar('PACKAGES', True).split(): 50 for p in d.getVar('PACKAGES', True).split():
51 d.setVar("INSANE_SKIP_%s" % p, "ldflags") 51 d.setVar("INSANE_SKIP_%s" % p, "ldflags textrel")
52} 52}
53 53
54# Ensure we get warnings if we miss something 54# Ensure we get warnings if we miss something