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:10:46 +0100 |
commit | a2bab241c64428d5109c3c5ac5de4463fbad70c5 (patch) | |
tree | 893c4cae0aa3a18da6a96d87694d883c27f1c1ac /meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | |
parent | 1177aee9a6761a6a46a6213f7c4d35827ea54022 (diff) | |
download | openembedded-core-a2bab241c64428d5109c3c5ac5de4463fbad70c5.tar.gz openembedded-core-a2bab241c64428d5109c3c5ac5de4463fbad70c5.tar.bz2 openembedded-core-a2bab241c64428d5109c3c5ac5de4463fbad70c5.zip |
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.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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 () { branch = d.getVar("GSTREAMER_1_0_GIT_BRANCH", True) if pv == "git": - d.setVar("SRC_URI", "git://anongit.freedesktop.org/gstreamer/%s;branch=%s;protocol=git" % (gstpkg_basename, branch)) + d.setVar("SRC_URI", "git://anongit.freedesktop.org/gstreamer/%s;branch=%s" % (gstpkg_basename, branch)) else: d.setVar("SRC_URI", "http://gstreamer.freedesktop.org/src/%s/%s-%s.tar.xz" % (gstpkg_basename, gstpkg_basename, pv)) } |