diff options
author | Andreas Oberritter <obi@opendreambox.org> | 2012-03-22 19:20:45 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-23 12:07:41 +0000 |
commit | a5e2277c53a8345a096eee8ccd9622838574a240 (patch) | |
tree | fd4999ab1911843d153fd3fceae10458f99cd297 /meta/recipes-multimedia/gstreamer/gst-plugins.inc | |
parent | 6e70c95dc69be6708c3bc231cc2a99eac1360815 (diff) | |
download | openembedded-core-a5e2277c53a8345a096eee8ccd9622838574a240.tar.gz openembedded-core-a5e2277c53a8345a096eee8ccd9622838574a240.tar.bz2 openembedded-core-a5e2277c53a8345a096eee8ccd9622838574a240.zip |
gst-plugins: remove obsolete orcc hack
* The sed script replacing ${bindir}/orcc with
${STAGING_BINDIR_NATIVE}/orcc causes orcc to not be found.
It may have been a workaround for older versions of pkg-config
or older gst-plugins. Removing it makes gst-plugins use
orcc from 'orc-native' successfully, if available.
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-plugins.inc')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-plugins.inc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins.inc b/meta/recipes-multimedia/gstreamer/gst-plugins.inc index a71a868049..f11a4af668 100644 --- a/meta/recipes-multimedia/gstreamer/gst-plugins.inc +++ b/meta/recipes-multimedia/gstreamer/gst-plugins.inc @@ -6,8 +6,6 @@ DEPENDS = "gstreamer" inherit autotools pkgconfig -PR = "r1" - FILESPATH =. "${FILE_DIRNAME}/gst-plugins:" SRC_URI = "http://gstreamer.freedesktop.org/src/${BPN}/${BPN}-${PV}.tar.bz2" @@ -16,14 +14,6 @@ EXTRA_OECONF = "--disable-valgrind --disable-debug --disable-examples " acpaths = "-I ${S}/common/m4 -I ${S}/m4" -# 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 -} - require gst-plugins-package.inc PACKAGES_DYNAMIC = "${PN}-*" |