From: Martin Schiller Date: Thu, 14 Sep 2023 07:48:00 +0000 (+0200) Subject: ovpn-dco: fix package dependencies X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d42a6758b945a5397ecf8e3df52d4a4e24c2f739;p=openwrt-packages.git ovpn-dco: fix package dependencies We have to add an "IPV6:" in front of the kmod-udptunnel6 to fix redundant dependencies with the openvpn-* packages. Signed-off-by: Martin Schiller --- diff --git a/kernel/ovpn-dco/Makefile b/kernel/ovpn-dco/Makefile index 53ab890ae..892f3a601 100644 --- a/kernel/ovpn-dco/Makefile +++ b/kernel/ovpn-dco/Makefile @@ -25,7 +25,7 @@ include $(INCLUDE_DIR)/package.mk define KernelPackage/ovpn-dco-v2 SUBMENU:=Network Support TITLE:=OpenVPN data channel offload - DEPENDS:=+kmod-crypto-aead +kmod-udptunnel4 +kmod-udptunnel6 + DEPENDS:=+kmod-crypto-aead +kmod-udptunnel4 +IPV6:kmod-udptunnel6 FILES:=$(PKG_BUILD_DIR)/drivers/net/ovpn-dco/ovpn-dco-v2.ko AUTOLOAD:=$(call AutoLoad,30,ovpn-dco-v2) endef