summaryrefslogtreecommitdiff
path: root/meta-phosphor/recipes-phosphor/chassis
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/chassis
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/chassis')
-rw-r--r--meta-phosphor/recipes-phosphor/chassis/obmc-phosphor-buttons_git.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-phosphor/recipes-phosphor/chassis/obmc-phosphor-buttons_git.bb b/meta-phosphor/recipes-phosphor/chassis/obmc-phosphor-buttons_git.bb
index 7e34702c45..670fbfaa27 100644
--- a/meta-phosphor/recipes-phosphor/chassis/obmc-phosphor-buttons_git.bb
+++ b/meta-phosphor/recipes-phosphor/chassis/obmc-phosphor-buttons_git.bb
@@ -15,7 +15,7 @@ PACKAGECONFIG[handler] = ",,,${VIRTUAL-RUNTIME_obmc-host-state-manager} ${VIRTUA
PV = "1.0+git${SRCPV}"
PR = "r1"
-SRC_URI += "git://github.com/openbmc/phosphor-buttons.git;branch=master;protocol=https"
+SRC_URI = "git://github.com/openbmc/phosphor-buttons.git;branch=master;protocol=https"
S = "${WORKDIR}/git"
SYSTEMD_PACKAGES = "${BUTTON_PACKAGES}"
@@ -39,4 +39,4 @@ do_install:append() {
install -m 0644 -D ${WORKDIR}/gpio_defs.json \
${D}/etc/default/obmc/gpio
fi
-} \ No newline at end of file
+}