From bccaff3439442ca820760c90da4a2308d3d61b0e Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Fri, 14 Apr 2023 11:24:47 -0500 Subject: 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 Change-Id: I430186a82f9582ba6196f5bf66b659af4092b48d --- meta-openpower/recipes-bsp/ffs/ffs_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-openpower/recipes-bsp/ffs/ffs_git.bb') diff --git a/meta-openpower/recipes-bsp/ffs/ffs_git.bb b/meta-openpower/recipes-bsp/ffs/ffs_git.bb index 0b40db0f46..fed5bf724c 100644 --- a/meta-openpower/recipes-bsp/ffs/ffs_git.bb +++ b/meta-openpower/recipes-bsp/ffs/ffs_git.bb @@ -3,6 +3,6 @@ require ffs.inc PV = "v0.1.0+git${SRCPV}" SRCREV = "3ec70fbc458e32eef0d0b1de79688b4dc48cbd57" -SRC_URI += "git://github.com/open-power/ffs.git;branch=master;protocol=https" +SRC_URI = "git://github.com/open-power/ffs.git;branch=master;protocol=https" S = "${WORKDIR}/git" -- cgit v1.2.3