summaryrefslogtreecommitdiff
path: root/meta-phosphor/recipes-phosphor/network
diff options
context:
space:
mode:
authorPatrick Williams <patrick@stwcx.xyz>2023-04-14 19:24:47 +0300
committerPatrick Williams <patrick@stwcx.xyz>2023-04-17 17:51:12 +0300
commitbccaff3439442ca820760c90da4a2308d3d61b0e (patch)
tree8c190c31e50a28f79d588cc49e101ddafb7b4a28 /meta-phosphor/recipes-phosphor/network
parent65682ac6176742b7d81b64c71d7a37913a39470b (diff)
downloadopenbmc-bccaff3439442ca820760c90da4a2308d3d61b0e.tar.xz
treewide: reduce append operators on SRC_URI
In a base bb file where we are setting the primary git repository, it is rare that we need to `SRC_URI +=`. This is an unnecessary pattern that seems to have been copied throughout the repository. Remove the pattern where appropriate and simply set SRC_URI directly. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I430186a82f9582ba6196f5bf66b659af4092b48d
Diffstat (limited to 'meta-phosphor/recipes-phosphor/network')
-rw-r--r--meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb2
-rw-r--r--meta-phosphor/recipes-phosphor/network/phosphor-snmp_git.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb b/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb
index 37b7e68b76..4cbbb7b22b 100644
--- a/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb
+++ b/meta-phosphor/recipes-phosphor/network/phosphor-network_git.bb
@@ -21,7 +21,7 @@ PACKAGECONFIG[persist-mac] = "-Dpersist-mac=true, -persist-mac=false,,"
PV = "1.0+git${SRCPV}"
PR = "r1"
-SRC_URI += "git://github.com/openbmc/phosphor-networkd;branch=master;protocol=https"
+SRC_URI = "git://github.com/openbmc/phosphor-networkd;branch=master;protocol=https"
S = "${WORKDIR}/git"
SYSTEMD_PACKAGES = "${PN}"
diff --git a/meta-phosphor/recipes-phosphor/network/phosphor-snmp_git.bb b/meta-phosphor/recipes-phosphor/network/phosphor-snmp_git.bb
index 1fff205376..5bab66408e 100644
--- a/meta-phosphor/recipes-phosphor/network/phosphor-snmp_git.bb
+++ b/meta-phosphor/recipes-phosphor/network/phosphor-snmp_git.bb
@@ -12,7 +12,7 @@ SRCREV = "cab8c5368eda1547b882bfc519704cb06a4cb8af"
PV = "0.1+git${SRCPV}"
PR = "r1"
-SRC_URI += "git://github.com/openbmc/phosphor-snmp;branch=master;protocol=https"
+SRC_URI = "git://github.com/openbmc/phosphor-snmp;branch=master;protocol=https"
S = "${WORKDIR}/git"