diff options
| author | Josef Schlehofer | 2025-09-26 18:09:22 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-10-01 18:23:42 +0000 |
| commit | 1e00160a8fdcbe2dc8ce898febfe4338ba2fe890 (patch) | |
| tree | f3a458e7034a897eb3d7e2e6217f90a5b6a2f074 | |
| parent | be6567276cd17cb477f8f6756abc6309719dc80c (diff) | |
| download | openwrt-1e00160a8fdcbe2dc8ce898febfe4338ba2fe890.tar.gz | |
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 <pepe.schlehofer@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/20193
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/libs/libunwind/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/libunwind/Makefile b/package/libs/libunwind/Makefile index e750316eb8..8fa2a786c4 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 <yszhou4tech@gmail.com> |