diff options
author | Jakub Kicinski <kuba@kernel.org> | 2020-10-15 12:33:24 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-10-15 12:33:24 -0700 |
commit | 2ecbc1f684482b4ed52447a39903bd9b0f222898 (patch) | |
tree | 55ead01abc65a3b3dfc0baec90a699a6910486bd /net | |
parent | 6617dfd440149e42ce4d2be615eb31a4755f4d30 (diff) | |
download | linux-2ecbc1f684482b4ed52447a39903bd9b0f222898.tar.bz2 |
Revert "bpfilter: Fix build error with CONFIG_BPFILTER_UMH"
This reverts commit 1d273fcc2c29343e59658276b77b02e5897a3123.
Alexei points out there's nothing implying headers will be built
and therefore exist under usr/include, so this fix doesn't make
much sense.
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/bpfilter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bpfilter/Makefile b/net/bpfilter/Makefile index 389ea76ccc0b..cdac82b8c53a 100644 --- a/net/bpfilter/Makefile +++ b/net/bpfilter/Makefile @@ -5,7 +5,7 @@ userprogs := bpfilter_umh bpfilter_umh-objs := main.o -userccflags += -I $(srctree)/tools/include/ -I $(srctree)/tools/include/uapi -I usr/include/ +userccflags += -I $(srctree)/tools/include/ -I $(srctree)/tools/include/uapi ifeq ($(CONFIG_BPFILTER_UMH), y) # builtin bpfilter_umh should be linked with -static |