From 303a339f30a9441c4695d3d2cc78f1b33cd959ff Mon Sep 17 00:00:00 2001 From: Masahiro Yamada Date: Thu, 31 Jan 2019 12:15:35 +0900 Subject: bpfilter: remove extra header search paths for bpfilter_umh Currently, the header search paths -Itools/include and -Itools/include/uapi are not used. Let's drop the unused code. We can remove -I. too by fixing up one C file. Signed-off-by: Masahiro Yamada Signed-off-by: David S. Miller --- net/bpfilter/Makefile | 1 - net/bpfilter/main.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'net/bpfilter') diff --git a/net/bpfilter/Makefile b/net/bpfilter/Makefile index 0947ee7f70d5..5d6c7760142d 100644 --- a/net/bpfilter/Makefile +++ b/net/bpfilter/Makefile @@ -5,7 +5,6 @@ hostprogs-y := bpfilter_umh bpfilter_umh-objs := main.o -KBUILD_HOSTCFLAGS += -I. -Itools/include/ -Itools/include/uapi HOSTCC := $(CC) ifeq ($(CONFIG_BPFILTER_UMH), y) diff --git a/net/bpfilter/main.c b/net/bpfilter/main.c index 1317f108df8a..61ce8454a88e 100644 --- a/net/bpfilter/main.c +++ b/net/bpfilter/main.c @@ -6,7 +6,7 @@ #include #include #include -#include "include/uapi/linux/bpf.h" +#include "../../include/uapi/linux/bpf.h" #include #include "msgfmt.h" -- cgit v1.2.3-59-g8ed1b