[openwrt/openwrt] uci: fix variable declaration

LEDE Commits lede-commits at lists.infradead.org
Sun Mar 17 10:24:09 PDT 2024


aparcar pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/7ac030876cba4d84729fb5be8796fd5b2a05855f

commit 7ac030876cba4d84729fb5be8796fd5b2a05855f
Author: Paul Spooren <mail at aparcar.org>
AuthorDate: Sat Mar 16 18:30:37 2024 +0100

    uci: fix variable declaration
    
    Using := doesn't fly well when including other variables. In fact this
    would cause the variable to be empty and break cloning of the git repo.
    
    Fix: "c354c069b3 uci: fix Makefile formatting"
    
    Signed-off-by: Paul Spooren <mail at aparcar.org>
---
 package/system/uci/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/system/uci/Makefile b/package/system/uci/Makefile
index 86bfdfb978..5d68b8905d 100644
--- a/package/system/uci/Makefile
+++ b/package/system/uci/Makefile
@@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk
 PKG_NAME:=uci
 PKG_RELEASE:=1
 
-PKG_SOURCE_URL:=$(PROJECT_GIT)/project/uci.git
+PKG_SOURCE_URL=$(PROJECT_GIT)/project/uci.git
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_DATE:=2023-08-10
 PKG_SOURCE_VERSION:=5781664d5087ccc4b5ab58505883231212dbedbc




More information about the lede-commits mailing list