summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Fahlgren2024-12-05 15:06:46 +0000
committerRobert Marko2024-12-05 21:03:53 +0000
commitc268ae674d01dbd2215b6e3aefdbc763f17b8d0f (patch)
treea6ab50cdf447480f0e9e02bc536cfa6af4503515
parentfc0c518a88e68d3deef04bec73b33d35186d6546 (diff)
downloadopenwrt-c268ae674d01dbd2215b6e3aefdbc763f17b8d0f.tar.gz
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@gmail.com> Link: https://github.com/openwrt/openwrt/pull/17176 Signed-off-by: Robert Marko <robimarko@gmail.com>
-rw-r--r--package/system/apk/Makefile2
1 files changed, 1 insertions, 1 deletions
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