diff options
| author | Joel Low | 2024-12-27 00:13:26 +0000 |
|---|---|---|
| committer | Robert Marko | 2024-12-27 15:10:21 +0000 |
| commit | 74354fb463ba19b25b913a0bd0d8a021655cb2fa (patch) | |
| tree | 0931097ed982fff7d11b494bc890118f769adfc4 | |
| parent | f491001f0c106cd59b9f72f2dbd2ba39a3616de3 (diff) | |
| download | openwrt-74354fb463ba19b25b913a0bd0d8a021655cb2fa.tar.gz | |
netfilter: fix bogus reference to `kmod-nf-conntrack-timeout`
Fix bogus reference to kmod-nf-conntrack-timeout, fixing the warning
`WARNING: Makefile 'package/kernel/linux/Makefile' has a dependency on
'kmod-nf-conntrack-timeout', which does not exist`.
Fixes: 0e2dcfc4f488 ("netfilter: add kmod-nfnetlink-ct{helper,timeout}")
Signed-off-by: Joel Low <joel@joelsplace.sg>
Link: https://github.com/openwrt/openwrt/pull/17388
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | package/kernel/linux/modules/netfilter.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/linux/modules/netfilter.mk b/package/kernel/linux/modules/netfilter.mk index 30ff35ca6b..96531b1e08 100644 --- a/package/kernel/linux/modules/netfilter.mk +++ b/package/kernel/linux/modules/netfilter.mk @@ -1069,7 +1069,7 @@ define KernelPackage/nfnetlink-cttimeout FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_cttimeout.ko KCONFIG:=CONFIG_NF_CT_NETLINK_TIMEOUT AUTOLOAD:=$(call AutoProbe,nfnetlink_cttimeout) - $(call AddDepends/nfnetlink,+kmod-nf-conntrack +kmod-nf-conntrack-timeout @KERNEL_NF_CONNTRACK_TIMEOUT) + $(call AddDepends/nfnetlink,+kmod-nf-conntrack @KERNEL_NF_CONNTRACK_TIMEOUT) endef define KernelPackage/nfnetlink-cttimeout/description |