projects
/
openwrt
/
staging
/
jow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc0c518
)
apk: add dependency on wget provider
author
Eric Fahlgren
<
[email protected]
>
Thu, 5 Dec 2024 15:06:46 +0000
(07:06 -0800)
committer
Robert Marko
<
[email protected]
>
Thu, 5 Dec 2024 21:03:53 +0000
(22:03 +0100)
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 <
[email protected]
>
Link:
https://github.com/openwrt/openwrt/pull/17176
Signed-off-by: Robert Marko <
[email protected]
>
package/system/apk/Makefile
patch
|
blob
|
history
diff --git
a/package/system/apk/Makefile
b/package/system/apk/Makefile
index 6d8bf6e1bcf2f86346a56260c82e63fa28ff1ce4..c045a990f0aa5dc10c0c457c7c3dfbfff761c130 100644
(file)
--- 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