summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-09-08 23:22:34 +0200
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2017-09-08 23:22:34 +0200
commit5698cf23837e1730f21766bf1b34227b61d20133 (patch)
treed0b7ed6cbfb05ddab504475950cc381533d9e2fa /common
parent33bb9fed153fd641d434a8edea595dca030f9247 (diff)
Fix RSS-related issues for rcar gen2
For pyro we need to fix a few recipes to work with the recipe specific sysroot feature. Change-Id: I9cc12083675ea2522a1f453f603b034e911d79fd Bug-AGL: SPEC-646 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'common')
-rw-r--r--common/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/common/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc b/common/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc
index fcf6839..0122f30 100644
--- a/common/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc
+++ b/common/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc
@@ -76,11 +76,12 @@ SRC_URI_append = " file://0001-Patch-Makefiles-to-use-PKG_CONFIG_SYSROOT_PATH.pa
# autogen will clone common ... how evil
autogennoconf() {
cd ${S}
- ./autogen.sh --noconfigure
+ ./autogen.sh --noconfigure --nocheck
}
do_patch[prefuncs] += "autogennoconf"
-do_patch[depends] += "autoconf-native:do_populate_sysroot"
-do_patch[depends] += "gettext-native:do_populate_sysroot"
+# due to the prefuncs statement, we need the dependencies earlier
+do_unpack[depends] += "autoconf-native:do_populate_sysroot"
+do_unpack[depends] += "gettext-native:do_populate_sysroot"
do_install_prepend() {
export GIR_EXTRA_LIBS_PATH="${B}/gst-libs/gst/tag/.libs:${B}/gst-libs/gst/video/.libs:${B}/gst-libs/gst/audio/.libs:${B}/gst-libs/gst/rtp/.libs:${B}/gst-libs/gst/sdp/.libs"