lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 6 May 2020 14:50:21 +0800 From: Huang Qijun <dknightjun@...il.com> To: pablo@...filter.org Cc: kadlec@...filter.org, fw@...len.de, davem@...emloft.net, kuba@...nel.org, ast@...nel.org, daniel@...earbox.net, kafai@...com, songliubraving@...com, yhs@...com, andriin@...com, john.fastabend@...il.com, kpsingh@...omium.org, netfilter-devel@...r.kernel.org, coreteam@...filter.org, netdev@...r.kernel.org, linux-kernel@...r.kernel.org, bpf@...r.kernel.org, Huang Qijun <dknightjun@...il.com> Subject: [PATCH] netfilter: fix make target xt_TCPMSS.o error. When compiling netfilter, there will be an error "No rule to make target 'net/netfilter/xt_TCPMSS.o'", because the xt_TCPMSS.c in the makefile is uppercase, and the file name of the source file (xt_tcpmss.c) is lowercase. Therefore, change the xt_TCPMSS.c name in the makefile to all lowercase. Signed-off-by: Huang Qijun <dknightjun@...il.com> --- net/netfilter/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/netfilter/Makefile b/net/netfilter/Makefile index 0e0ded87e27b..b974ade24556 100644 --- a/net/netfilter/Makefile +++ b/net/netfilter/Makefile @@ -157,7 +157,7 @@ obj-$(CONFIG_NETFILTER_XT_TARGET_REDIRECT) += xt_REDIRECT.o obj-$(CONFIG_NETFILTER_XT_TARGET_MASQUERADE) += xt_MASQUERADE.o obj-$(CONFIG_NETFILTER_XT_TARGET_SECMARK) += xt_SECMARK.o obj-$(CONFIG_NETFILTER_XT_TARGET_TPROXY) += xt_TPROXY.o -obj-$(CONFIG_NETFILTER_XT_TARGET_TCPMSS) += xt_TCPMSS.o +obj-$(CONFIG_NETFILTER_XT_TARGET_TCPMSS) += xt_tcpmss.o obj-$(CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP) += xt_TCPOPTSTRIP.o obj-$(CONFIG_NETFILTER_XT_TARGET_TEE) += xt_TEE.o obj-$(CONFIG_NETFILTER_XT_TARGET_TRACE) += xt_TRACE.o -- 2.17.1
Powered by blists - more mailing lists