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-devtools | |
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-devtools')
-rw-r--r-- | meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/gnu-config/gnu-config_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/pkgconfig/pkgconfig_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/prelink/prelink_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/qemu/qemu_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/swabber/swabber-native_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent_git.bb | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb index 07e8529a9d..51120a0ce6 100644 --- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb +++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb | |||
@@ -13,7 +13,7 @@ SECTION = "base" | |||
13 | DEPENDS = "util-linux attr" | 13 | DEPENDS = "util-linux attr" |
14 | 14 | ||
15 | SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f" | 15 | SRCREV = "194aa4a1bd6447bb545286d0bcb0b0be8204d79f" |
16 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git;protocol=git" | 16 | SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs.git" |
17 | 17 | ||
18 | S = "${WORKDIR}/git" | 18 | S = "${WORKDIR}/git" |
19 | 19 | ||
diff --git a/meta/recipes-devtools/gnu-config/gnu-config_git.bb b/meta/recipes-devtools/gnu-config/gnu-config_git.bb index 8112690484..b12ab7ddc3 100644 --- a/meta/recipes-devtools/gnu-config/gnu-config_git.bb +++ b/meta/recipes-devtools/gnu-config/gnu-config_git.bb | |||
@@ -12,7 +12,7 @@ SRCREV = "a47f842264fc19837f8a00eb1d2d254a4c527334" | |||
12 | PV = "1.0+git${SRCPV}" | 12 | PV = "1.0+git${SRCPV}" |
13 | PR = "r0" | 13 | PR = "r0" |
14 | 14 | ||
15 | SRC_URI = "git://git.sv.gnu.org/config.git;protocol=git \ | 15 | SRC_URI = "git://git.sv.gnu.org/config.git \ |
16 | file://config-guess-uclibc.patch \ | 16 | file://config-guess-uclibc.patch \ |
17 | file://gnu-configize.in" | 17 | file://gnu-configize.in" |
18 | 18 | ||
diff --git a/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb b/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb index 5797204d71..ea527849b0 100644 --- a/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb +++ b/meta/recipes-devtools/mtd/mtd-utils_1.5.0.bb | |||
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \ | |||
7 | file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c" | 7 | file://include/common.h;beginline=1;endline=17;md5=ba05b07912a44ea2bf81ce409380049c" |
8 | 8 | ||
9 | SRCREV = "ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f" | 9 | SRCREV = "ca39eb1d98e736109c64ff9c1aa2a6ecca222d8f" |
10 | SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git \ | 10 | SRC_URI = "git://git.infradead.org/mtd-utils.git \ |
11 | file://add-exclusion-to-mkfs-jffs2-git-2.patch \ | 11 | file://add-exclusion-to-mkfs-jffs2-git-2.patch \ |
12 | file://mtd-utils-fix-corrupt-cleanmarker-with-flash_erase--j-command.patch " | 12 | file://mtd-utils-fix-corrupt-cleanmarker-with-flash_erase--j-command.patch " |
13 | 13 | ||
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb index f3cbc53493..279cb74a1d 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_git.bb | |||
@@ -9,7 +9,7 @@ RDEPENDS_${PN}_class-native = "" | |||
9 | SRCREV = "757a1664a440c60e8126443bf984e4bdf374c327" | 9 | SRCREV = "757a1664a440c60e8126443bf984e4bdf374c327" |
10 | PV = "0.1.8+git${SRCPV}" | 10 | PV = "0.1.8+git${SRCPV}" |
11 | 11 | ||
12 | SRC_URI = "git://git.yoctoproject.org/opkg-utils;protocol=git \ | 12 | SRC_URI = "git://git.yoctoproject.org/opkg-utils \ |
13 | " | 13 | " |
14 | 14 | ||
15 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
diff --git a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb index d5ec8fcf79..cc0814b082 100644 --- a/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb +++ b/meta/recipes-devtools/pkgconfig/pkgconfig_git.bb | |||
@@ -1,6 +1,6 @@ | |||
1 | require pkgconfig.inc | 1 | require pkgconfig.inc |
2 | 2 | ||
3 | SRC_URI = "git://anongit.freedesktop.org/pkg-config;protocol=git \ | 3 | SRC_URI = "git://anongit.freedesktop.org/pkg-config \ |
4 | file://autofoo.patch \ | 4 | file://autofoo.patch \ |
5 | file://glibconfig-sysdefs.h" | 5 | file://glibconfig-sysdefs.h" |
6 | 6 | ||
diff --git a/meta/recipes-devtools/prelink/prelink_git.bb b/meta/recipes-devtools/prelink/prelink_git.bb index 8c55b91481..744a55ff39 100644 --- a/meta/recipes-devtools/prelink/prelink_git.bb +++ b/meta/recipes-devtools/prelink/prelink_git.bb | |||
@@ -26,7 +26,7 @@ FILES_${PN}-cron = "${sysconfdir}/cron.daily ${sysconfdir}/default" | |||
26 | 26 | ||
27 | PACKAGES =+ "${PN}-cron" | 27 | PACKAGES =+ "${PN}-cron" |
28 | 28 | ||
29 | SRC_URI = "git://git.yoctoproject.org/prelink-cross.git;protocol=git \ | 29 | SRC_URI = "git://git.yoctoproject.org/prelink-cross.git \ |
30 | file://prelink.conf \ | 30 | file://prelink.conf \ |
31 | file://prelink.cron.daily \ | 31 | file://prelink.cron.daily \ |
32 | file://prelink.default \ | 32 | file://prelink.default \ |
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 87684efe03..226ff96dda 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb | |||
@@ -6,7 +6,7 @@ PR = "r0" | |||
6 | 6 | ||
7 | DEFAULT_PREFERENCE = "-1" | 7 | DEFAULT_PREFERENCE = "-1" |
8 | 8 | ||
9 | SRC_URI = "git://git.yoctoproject.org/pseudo;protocol=git" | 9 | SRC_URI = "git://git.yoctoproject.org/pseudo" |
10 | 10 | ||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | 12 | ||
diff --git a/meta/recipes-devtools/qemu/qemu_git.bb b/meta/recipes-devtools/qemu/qemu_git.bb index ed7ad32f4a..5f5f0dd05e 100644 --- a/meta/recipes-devtools/qemu/qemu_git.bb +++ b/meta/recipes-devtools/qemu/qemu_git.bb | |||
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \ | |||
8 | PV = "1.3.0+git${SRCPV}" | 8 | PV = "1.3.0+git${SRCPV}" |
9 | PR = "r0" | 9 | PR = "r0" |
10 | 10 | ||
11 | SRC_URI_prepend = "git://git.qemu.org/qemu.git;protocol=git" | 11 | SRC_URI_prepend = "git://git.qemu.org/qemu.git" |
12 | S = "${WORKDIR}/git" | 12 | S = "${WORKDIR}/git" |
13 | 13 | ||
14 | DEFAULT_PREFERENCE = "-1" | 14 | DEFAULT_PREFERENCE = "-1" |
diff --git a/meta/recipes-devtools/swabber/swabber-native_git.bb b/meta/recipes-devtools/swabber/swabber-native_git.bb index 9faae5d59a..2648c61d34 100644 --- a/meta/recipes-devtools/swabber/swabber-native_git.bb +++ b/meta/recipes-devtools/swabber/swabber-native_git.bb | |||
@@ -8,7 +8,7 @@ PV = "0.0+git${SRCPV}" | |||
8 | 8 | ||
9 | S = "${WORKDIR}/git" | 9 | S = "${WORKDIR}/git" |
10 | 10 | ||
11 | SRC_URI = "git://git.yoctoproject.org/swabber;protocol=git" | 11 | SRC_URI = "git://git.yoctoproject.org/swabber" |
12 | 12 | ||
13 | inherit native | 13 | inherit native |
14 | 14 | ||
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb index 5df661ca45..09b153ed57 100644 --- a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb | |||
@@ -9,7 +9,7 @@ SRCREV = "4ef94ecb927a8912c3d79ce137182247786cff8f" | |||
9 | PV = "0.4.0+git${SRCPV}" | 9 | PV = "0.4.0+git${SRCPV}" |
10 | PR = "r2" | 10 | PR = "r2" |
11 | 11 | ||
12 | SRC_URI = "git://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agent.git;protocol=git \ | 12 | SRC_URI = "git://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agent.git \ |
13 | file://fix_ranlib.patch \ | 13 | file://fix_ranlib.patch \ |
14 | file://fix_tcf-agent.init.patch \ | 14 | file://fix_tcf-agent.init.patch \ |
15 | " | 15 | " |