diff options
author | Tom Hochstein <tom.hochstein@nxp.com> | 2016-09-13 19:53:19 -0500 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-09-14 09:49:46 -0300 |
commit | c663fed590b3dd5c0f43e0bbd1a457a61a488a0e (patch) | |
tree | 1fe1e6d28081e4c51795b57a1bf35e61d05e567c | |
parent | 30631794322192b7e69ad4f891ca8308aa4e5445 (diff) | |
download | meta-freescale-c663fed590b3dd5c0f43e0bbd1a457a61a488a0e.tar.gz |
gstreamer1.0-plugins-imx: Fix inoperable package configuration
All packages were being built all the time because the configure
arguments from PACKAGECONFIG were not being passed. The problem
manifested itself as the QA issue build-deps, but the problem wasn't
fixed and the QA issue was silenced.
This is fixed by passing the PACKAGECONFIG arguments through EXTRA_OECONF.
Also, the build-deps QA issues are re-enabled.
Signed-off-by: Tom Hochstein <tom.hochstein@nxp.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.2.bb | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.2.bb b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.2.bb index 54621591..8a1777fe 100644 --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.2.bb +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-imx_0.12.2.bb | |||
@@ -32,7 +32,7 @@ EGLVIVSINK_PLATFORM = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayla | |||
32 | 'fb', d),d)}" | 32 | 'fb', d),d)}" |
33 | 33 | ||
34 | EGL_PLATFORM_CONF = "--egl-platform=${EGLVIVSINK_PLATFORM}" | 34 | EGL_PLATFORM_CONF = "--egl-platform=${EGLVIVSINK_PLATFORM}" |
35 | EXTRA_OECONF = "--kernel-headers=${STAGING_KERNEL_DIR}/include" | 35 | EXTRA_OECONF = "--kernel-headers=${STAGING_KERNEL_DIR}/include ${PACKAGECONFIG_CONFARGS}" |
36 | 36 | ||
37 | EGLVIVSINK_DEPENDS = " \ | 37 | EGLVIVSINK_DEPENDS = " \ |
38 | virtual/egl virtual/libgles2 \ | 38 | virtual/egl virtual/libgles2 \ |
@@ -64,8 +64,3 @@ require recipes-multimedia/gstreamer/gst-plugins-package.inc | |||
64 | PACKAGES_DYNAMIC = "^${PN}-.*" | 64 | PACKAGES_DYNAMIC = "^${PN}-.*" |
65 | 65 | ||
66 | COMPATIBLE_MACHINE = "(mx6|mx7)" | 66 | COMPATIBLE_MACHINE = "(mx6|mx7)" |
67 | |||
68 | # disable the false alarm (the "it isn't a build dependency" QA warning) | ||
69 | INSANE_SKIP_gstreamer1.0-plugins-imx-imxaudio = "build-deps" | ||
70 | INSANE_SKIP_gstreamer1.0-plugins-imx-imxvpu = "build-deps" | ||
71 | INSANE_SKIP_gstreamer1.0-plugins-imx-imxg2d = "build-deps" | ||