Re: [PATCH] netfilter: fix make target xt_TCPMSS.o error.

2020-05-06 Thread Cong Wang
On Tue, May 5, 2020 at 11:52 PM Huang Qijun wrote: > > 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,

Re: [PATCH] netfilter: fix make target xt_TCPMSS.o error.

2020-05-06 Thread Jan Engelhardt
On Wednesday 2020-05-06 08:50, Huang Qijun wrote: >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.

[PATCH] netfilter: fix make target xt_TCPMSS.o error.

2020-05-06 Thread Huang Qijun
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.