summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorGary Thomas <gary@mlbassoc.com>2010-09-29 16:22:40 +0100
committerRichard Purdie <rpurdie@linux.intel.com>2010-09-29 16:22:40 +0100
commit53bfbe6b061180b4eef7614340b6f8b1ff23d902 (patch)
tree8251309b1c70b5f501e67df7dc89d98fd24ed381 /meta
parenta598c156363b1eea837b7700c81746afd3c32bfe (diff)
downloadopenembedded-core-contrib-53bfbe6b061180b4eef7614340b6f8b1ff23d902.tar.gz
gstreamer: Ensure correct orcc version is used
Taken from a patch from the OE list posted by Michael Smith, submitted to Poky by Gary Thomas. Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-plugins.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
index f7f0a2d7c5..cd3e0a0a95 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins.inc
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc
@@ -20,6 +20,14 @@ FILES_${PN}-dbg += "${libdir}/gstreamer-${LIBV}/.debug"
PACKAGES_DYNAMIC = "${PN}-*"
+# orc.m4 calls pkg-config ----variable=orcc orc-0.4 to get the path to orcc,
+# resulting in /usr/bin/orcc. Force it to use the staged orcc.
+do_configure_append() {
+ for i in $(find ${S} -name "Makefile") ; do
+ sed -i -e s:${bindir}/orcc:${STAGING_BINDIR_NATIVE}/orcc:g $i
+ done
+}
+
python populate_packages_prepend () {
gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d)
postinst = bb.data.getVar('plugin_postinst', d, 1)