gstreamer1.0: update git recipe to 1.7.1

The autogen.sh script takes care of cd'ing to the correct directory
before it does anything, so we don't need to cd on its behalf any more
in do_configure_prepend().

  http://cgit.freedesktop.org/gstreamer/gstreamer/tree/autogen.sh?id=1.7.1

(From OE-Core rev: 23a7c4b7d546cbcca4cca198046039f31f8dfce1)

Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Andre McCurdy 2016-01-19 10:33:11 -08:00 committed by Richard Purdie
parent 7c810d0631
commit 3c7f2b8f35
1 changed files with 10 additions and 5 deletions

View File

@ -5,14 +5,19 @@ include gstreamer1.0.inc
LIC_FILES_CHKSUM = "file://COPYING;md5=6762ed442b3822387a51c92d928ead0d \
file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d"
SRC_URI = "git://anongit.freedesktop.org/gstreamer/gstreamer;branch=master"
SRC_URI = " \
git://anongit.freedesktop.org/gstreamer/gstreamer;name=base \
git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common \
"
SRCREV = "3b8181a8c550e74acaba4e8c55bdc649fa551dc9"
PV = "1.7.1+git${SRCPV}"
SRCREV_base = "2a188848eb2af3c3b357978ff7786a78aad9dd55"
SRCREV_common = "86e46630ed8af8d94796859db550a9c3d89c9f65"
SRCREV_FORMAT = "base"
S = "${WORKDIR}/git"
do_configure_prepend() {
cd ${S}
./autogen.sh --noconfigure
cd ${B}
${S}/autogen.sh --noconfigure
}