summaryrefslogtreecommitdiff
path: root/meta-phosphor
diff options
context:
space:
mode:
authorBrad Bishop <bradleyb@fuzziesquirrel.com>2020-03-25 22:02:29 +0300
committerAndrew Geissler <geissonator@yahoo.com>2020-03-27 16:19:06 +0300
commit8f85a0eadaac540e93dae2c8a24372e52cf7d654 (patch)
tree81ddb3113cfb4f93f9d8f09d954fa42ccc0b9c11 /meta-phosphor
parent8ad1c1f86078598a3baa68b9eb58d719b06bc2be (diff)
downloadopenbmc-8f85a0eadaac540e93dae2c8a24372e52cf7d654.tar.xz
meta-phosphor: dbus-interfaces: use assignment operator
Use the assignment operator instead of appending when setting SRC_URI in a recipe. Appending to variables without a default such as SRC_URI in this context is nonsensical and a distraction (granted a minor one) for anyone accustomed to looking at bitbake metadata. Perhaps more importantly it confuses tools like devtool. (From meta-phosphor rev: 10862f2d1890435270651acd8448abca33b7419f) Change-Id: I9a0fbc3c731499d7f6075c15ff56f24fe0e3d65b Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com> Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Diffstat (limited to 'meta-phosphor')
-rw-r--r--meta-phosphor/recipes-phosphor/dbus/phosphor-dbus-interfaces_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-phosphor/recipes-phosphor/dbus/phosphor-dbus-interfaces_git.bb b/meta-phosphor/recipes-phosphor/dbus/phosphor-dbus-interfaces_git.bb
index 4b617f73d..cd9df65d0 100644
--- a/meta-phosphor/recipes-phosphor/dbus/phosphor-dbus-interfaces_git.bb
+++ b/meta-phosphor/recipes-phosphor/dbus/phosphor-dbus-interfaces_git.bb
@@ -13,7 +13,7 @@ inherit phosphor-dbus-yaml
DEPENDS += "autoconf-archive-native"
DEPENDS += "sdbus++-native"
-SRC_URI += "git://github.com/openbmc/phosphor-dbus-interfaces"
+SRC_URI = "git://github.com/openbmc/phosphor-dbus-interfaces"
SRCREV = "6e7634da912cd16c73bc762bf91039179360a0e2"
DEPENDS_remove_class-native = "sdbus++-native"