summaryrefslogtreecommitdiffstats
path: root/meta-fsl-arm
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2014-07-11 16:54:44 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2014-07-11 18:19:10 -0300
commitb48a47a43377073ec9a44c2c85fced093da8aad6 (patch)
tree2fd0be90b215f1c8d5cd4c9e7acbaf0b0a7023f4 /meta-fsl-arm
parentab69887a47f1491bdf15bda665ef1975cc55e032 (diff)
downloadmeta-freescale-b48a47a43377073ec9a44c2c85fced093da8aad6.tar.gz
amd-gpu-mx51.inc: Use anonymous python function to inject metadata
The metadata amending, to include the INSANE_SKIP hacks, need to be done before we run the QA checks. This has change now that the QA checks are run in a separate task. To accomodate the code to this the recipe needed to be reworked to use an anonymous python function so it runs at parsing time. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'meta-fsl-arm')
-rw-r--r--meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/amd-gpu-mx51.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/amd-gpu-mx51.inc b/meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/amd-gpu-mx51.inc
index 02a4f21cb..f37f1d5f0 100644
--- a/meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/amd-gpu-mx51.inc
+++ b/meta-fsl-arm/recipes-graphics/amd-gpu-x11-bin/amd-gpu-mx51.inc
@@ -19,7 +19,7 @@ inherit fsl-eula-unpack
19 19
20# FIXME: All binaries lack GNU_HASH in elf binary but as we don't have 20# FIXME: All binaries lack GNU_HASH in elf binary but as we don't have
21# the source we cannot fix it. Disable the insane check for now. 21# the source we cannot fix it. Disable the insane check for now.
22python populate_packages_prepend() { 22python () {
23 for p in d.getVar('PACKAGES', True).split(): 23 for p in d.getVar('PACKAGES', True).split():
24 d.setVar("INSANE_SKIP_%s" % p, "ldflags") 24 d.setVar("INSANE_SKIP_%s" % p, "ldflags")
25} 25}