[openwrt/openwrt] apk: add dependency on wget provider
LEDE Commits
lede-commits at lists.infradead.org
Thu Dec 5 13:03:56 PST 2024
robimarko pushed a commit to openwrt/openwrt.git, branch main:
https://git.openwrt.org/c268ae674d01dbd2215b6e3aefdbc763f17b8d0f
commit c268ae674d01dbd2215b6e3aefdbc763f17b8d0f
Author: Eric Fahlgren <ericfahlgren at gmail.com>
AuthorDate: Thu Dec 5 07:06:46 2024 -0800
apk: add dependency on wget provider
The apk-* packages contain no declared dependencies on a wget provider,
which is required for proper operation. Let's add it.
Fixes: https://github.com/openwrt/openwrt/issues/17173
Signed-off-by: Eric Fahlgren <ericfahlgren at gmail.com>
Link: https://github.com/openwrt/openwrt/pull/17176
Signed-off-by: Robert Marko <robimarko at gmail.com>
---
package/system/apk/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/system/apk/Makefile b/package/system/apk/Makefile
index 6d8bf6e1bc..c045a990f0 100644
--- a/package/system/apk/Makefile
+++ b/package/system/apk/Makefile
@@ -27,7 +27,7 @@ define Package/apk/default
SECTION:=base
CATEGORY:=Base system
TITLE:=apk package manager
- DEPENDS:=+zlib
+ DEPENDS:=+zlib +wget
URL:=$(PKG_SOURCE_URL)
PROVIDES:=apk
endef
More information about the lede-commits
mailing list