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
diff --git a/meta-openpower/recipes-phosphor/flash/openpower-software-manager_git.bb b/meta-openpower/recipes-phosphor/flash/openpower-software-manager_git.bb
index 8f781f6..d9cf89d 100644
--- a/meta-openpower/recipes-phosphor/flash/openpower-software-manager_git.bb
+++ b/meta-openpower/recipes-phosphor/flash/openpower-software-manager_git.bb
@@ -65,7 +65,7 @@
 
 S = "${WORKDIR}/git"
 
-SRC_URI += "git://github.com/openbmc/openpower-pnor-code-mgmt;branch=master;protocol=https"
+SRC_URI = "git://github.com/openbmc/openpower-pnor-code-mgmt;branch=master;protocol=https"
 
 SRCREV = "9b837f61632ebb522a4f5cd297cbe1c477c59753"