From 1e00160a8fdcbe2dc8ce898febfe4338ba2fe890 Mon Sep 17 00:00:00 2001 From: Josef Schlehofer Date: Fri, 26 Sep 2025 20:09:22 +0200 Subject: [PATCH] libunwind: avoid using $(PKG_NAME) in PKG_SOURCE_URL If there is used $(PKG_NAME) in PKG_SOURCE_URL, then it can not be copy&pasted to the browser's address bar. Let's remove $(PKG_NAME) and use hardcoded project name in the PKG_SOURCE_URL Signed-off-by: Josef Schlehofer Link: https://github.com/openwrt/openwrt/pull/20193 Signed-off-by: Hauke Mehrtens --- package/libs/libunwind/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libs/libunwind/Makefile b/package/libs/libunwind/Makefile index e750316eb83..8fa2a786c45 100644 --- a/package/libs/libunwind/Makefile +++ b/package/libs/libunwind/Makefile @@ -13,7 +13,7 @@ PKG_VERSION:=1.8.3 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=https://github.com/$(PKG_NAME)/$(PKG_NAME)/releases/download/v$(PKG_VERSION)/ +PKG_SOURCE_URL:=https://github.com/libunwind/libunwind/releases/download/v$(PKG_VERSION)/ PKG_HASH:=be30d910e67f58d82e753231f1357f326a1a088acf126b21ff77e60aab19b90b PKG_MAINTAINER:=Yousong Zhou -- 2.47.3