diff options
author | 2013-03-27 15:03:53 -0300 | |
---|---|---|
committer | 2013-03-27 15:03:53 -0300 | |
commit | f4e019f1fedd1fa1f89b5e4e9b852a0529102e3a (patch) | |
tree | 79510972b65c43346d986a37acc38db84ac44cdc /recipes-multimedia/libfslcodec | |
parent | 669267a7be9e50b0fd26c77f309a7d6ce12cd4be (diff) | |
download | meta-fsl-arm-f4e019f1fedd1fa1f89b5e4e9b852a0529102e3a.tar.gz meta-fsl-arm-f4e019f1fedd1fa1f89b5e4e9b852a0529102e3a.tar.bz2 meta-fsl-arm-f4e019f1fedd1fa1f89b5e4e9b852a0529102e3a.zip |
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.bb | 2 |
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() { # FIXME: All binaries lack GNU_HASH in elf binary but as we don't have # the source we cannot fix it. Disable the insane check for now. for p in d.getVar('PACKAGES', True).split(): - d.setVar("INSANE_SKIP_%s" % p, "ldflags") + d.setVar("INSANE_SKIP_%s" % p, "ldflags textrel") } # Ensure we get warnings if we miss something |