From 8f85a0eadaac540e93dae2c8a24372e52cf7d654 Mon Sep 17 00:00:00 2001 From: Brad Bishop Date: Wed, 25 Mar 2020 15:02:29 -0400 Subject: 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 Signed-off-by: Andrew Geissler --- meta-phosphor/recipes-phosphor/dbus/phosphor-dbus-interfaces_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-phosphor') 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" -- cgit v1.2.3