diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2013-08-30 09:56:36 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-30 16:23:46 +0100 |
commit | 88c5e10d6296efb175f05c3aae6e308972854cb1 (patch) | |
tree | c3ca1c762f9caec38908f8a2ab1cf4933b69e9e6 /meta/recipes-multimedia | |
parent | 5c0e6cfdd9342dae634ed85facba387e03bc207b (diff) | |
download | poky-88c5e10d6296efb175f05c3aae6e308972854cb1.tar.gz |
remove the unnecessary protocol parameters
It's not necessary to specify the protocol parameter when it's the
default protocol for the fetcher, e.g. the default protocol for
git fetcher it git, "protocol=git" isn't needed.
(From OE-Core rev: a2bab241c64428d5109c3c5ac5de4463fbad70c5)
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia')
4 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_git.bb index 69b771dbb6..5ce28ccbe7 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-libav_git.bb | |||
@@ -11,7 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | |||
11 | file://gst-libs/ext/libav/COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \ | 11 | file://gst-libs/ext/libav/COPYING.LGPLv2.1;md5=bd7a443320af8c812e4c18d1b79df004 \ |
12 | file://gst-libs/ext/libav/COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02" | 12 | file://gst-libs/ext/libav/COPYING.LGPLv3;md5=e6a600fd5e1d9cbde2d983680233ad02" |
13 | 13 | ||
14 | SRC_URI = "git://anongit.freedesktop.org/gstreamer/gst-libav;branch=master;protocol=git" | 14 | SRC_URI = "git://anongit.freedesktop.org/gstreamer/gst-libav;branch=master" |
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
16 | 16 | ||
17 | SRCREV = "127202d6f65584891dabf92be031f0d170b0e7f1" | 17 | SRCREV = "127202d6f65584891dabf92be031f0d170b0e7f1" |
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb index 2282b724d5..11c77aeada 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-omx_git.bb | |||
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \ | |||
8 | file://omx/gstomx.h;beginline=1;endline=21;md5=5c8e1fca32704488e76d2ba9ddfa935f" | 8 | file://omx/gstomx.h;beginline=1;endline=21;md5=5c8e1fca32704488e76d2ba9ddfa935f" |
9 | 9 | ||
10 | SRC_URI = " \ | 10 | SRC_URI = " \ |
11 | git://anongit.freedesktop.org/gstreamer/gst-omx;branch=master;protocol=git \ | 11 | git://anongit.freedesktop.org/gstreamer/gst-omx;branch=master \ |
12 | file://0001-omx-fixed-type-error-in-printf-call.patch \ | 12 | file://0001-omx-fixed-type-error-in-printf-call.patch \ |
13 | " | 13 | " |
14 | S = "${WORKDIR}/git" | 14 | S = "${WORKDIR}/git" |
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc index 9484b202ca..6f279577be 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | |||
@@ -43,7 +43,7 @@ python __anonymous () { | |||
43 | branch = d.getVar("GSTREAMER_1_0_GIT_BRANCH", True) | 43 | branch = d.getVar("GSTREAMER_1_0_GIT_BRANCH", True) |
44 | 44 | ||
45 | if pv == "git": | 45 | if pv == "git": |
46 | d.setVar("SRC_URI", "git://anongit.freedesktop.org/gstreamer/%s;branch=%s;protocol=git" % (gstpkg_basename, branch)) | 46 | d.setVar("SRC_URI", "git://anongit.freedesktop.org/gstreamer/%s;branch=%s" % (gstpkg_basename, branch)) |
47 | else: | 47 | else: |
48 | d.setVar("SRC_URI", "http://gstreamer.freedesktop.org/src/%s/%s-%s.tar.xz" % (gstpkg_basename, gstpkg_basename, pv)) | 48 | d.setVar("SRC_URI", "http://gstreamer.freedesktop.org/src/%s/%s-%s.tar.xz" % (gstpkg_basename, gstpkg_basename, pv)) |
49 | } | 49 | } |
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0_git.bb b/meta/recipes-multimedia/gstreamer/gstreamer1.0_git.bb index e34325533e..424c90a9e8 100644 --- a/meta/recipes-multimedia/gstreamer/gstreamer1.0_git.bb +++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0_git.bb | |||
@@ -5,7 +5,7 @@ include gstreamer1.0.inc | |||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=6762ed442b3822387a51c92d928ead0d \ | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=6762ed442b3822387a51c92d928ead0d \ |
6 | file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d" | 6 | file://gst/gst.h;beginline=1;endline=21;md5=e059138481205ee2c6fc1c079c016d0d" |
7 | 7 | ||
8 | SRC_URI = "git://anongit.freedesktop.org/gstreamer/gstreamer;branch=master;protocol=git" | 8 | SRC_URI = "git://anongit.freedesktop.org/gstreamer/gstreamer;branch=master" |
9 | S = "${WORKDIR}/git" | 9 | S = "${WORKDIR}/git" |
10 | 10 | ||
11 | SRCREV = "3b8181a8c550e74acaba4e8c55bdc649fa551dc9" | 11 | SRCREV = "3b8181a8c550e74acaba4e8c55bdc649fa551dc9" |