diff options
author | Richard Purdie <richard@openedhand.com> | 2008-03-19 23:24:06 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-03-19 23:24:06 +0000 |
commit | ad621cb19a3c1440d9446fe1dbba7951bd58491f (patch) | |
tree | cf311d1973837f2b9587f044580cb1e6cc3be6ce | |
parent | 19f05c671aa6afe568239d129f4913d3f97b2917 (diff) | |
download | poky-ad621cb19a3c1440d9446fe1dbba7951bd58491f.tar.gz |
gst-ffmpeg: Run autoreconf instead of a broken custom do_configure
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4091 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb b/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb index 6d19d0d996..1ffffc4919 100644 --- a/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb +++ b/meta/packages/gstreamer/gst-ffmpeg_0.10.1.bb | |||
@@ -4,11 +4,12 @@ PRIORITY = "optional" | |||
4 | LICENSE = "LGPL" | 4 | LICENSE = "LGPL" |
5 | HOMEPAGE = "http://www.gstreamer.net/" | 5 | HOMEPAGE = "http://www.gstreamer.net/" |
6 | DEPENDS = "gstreamer zlib gst-plugins-base" | 6 | DEPENDS = "gstreamer zlib gst-plugins-base" |
7 | PR = "r1" | 7 | PR = "r2" |
8 | 8 | ||
9 | inherit autotools pkgconfig | 9 | inherit autotools pkgconfig |
10 | 10 | ||
11 | SRC_URI = "http://gstreamer.freedesktop.org/src/${PN}/${PN}-${PV}.tar.bz2" | 11 | SRC_URI = "http://gstreamer.freedesktop.org/src/${PN}/${PN}-${PV}.tar.bz2 \ |
12 | file://configure_fix.patch;patch=1" | ||
12 | 13 | ||
13 | FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" | 14 | FILES_${PN} += "${libdir}/gstreamer-0.10/*.so" |
14 | FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" | 15 | FILES_${PN}-dbg += "${libdir}/gstreamer-0.10/.debug" |
@@ -27,8 +28,4 @@ PATH_prepend="${CROSS_DIR}/${TARGET_SYS}/bin:" | |||
27 | # Hack to get STAGING_LIBDIR into the linker path when building ffmpeg | 28 | # Hack to get STAGING_LIBDIR into the linker path when building ffmpeg |
28 | CC = "${CCACHE} ${HOST_PREFIX}gcc -L${STAGING_LIBDIR}" | 29 | CC = "${CCACHE} ${HOST_PREFIX}gcc -L${STAGING_LIBDIR}" |
29 | 30 | ||
30 | do_configure () { | 31 | acpaths = "-I ${S}/common/m4" |
31 | cd ${S} | ||
32 | oe_runconf | ||
33 | } | ||
34 | |||