diff options
author | Daniel T. Lee <danieltimlee@gmail.com> | 2019-06-16 00:14:46 +0900 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-06-18 00:28:36 +0200 |
commit | fa206dccd85d7682d36de4ccca1549e93c501d9d (patch) | |
tree | 3c136c7e75f51f921cbeb61e1e8c45bc2dffabf4 /samples | |
parent | 32b88d3743573222c3ce0165727b6a4c4f7c245b (diff) | |
download | linux-stable-fa206dccd85d7682d36de4ccca1549e93c501d9d.tar.gz linux-stable-fa206dccd85d7682d36de4ccca1549e93c501d9d.tar.bz2 linux-stable-fa206dccd85d7682d36de4ccca1549e93c501d9d.zip |
samples: bpf: remove unnecessary include options in Makefile
Due to recent change of include path at commit b552d33c80a9
("samples/bpf: fix include path in Makefile"), some of the
previous include options became unnecessary.
This commit removes duplicated include options in Makefile.
Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/bpf/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/samples/bpf/Makefile b/samples/bpf/Makefile index 34bc7e17c994..0917f8cf4fab 100644 --- a/samples/bpf/Makefile +++ b/samples/bpf/Makefile @@ -176,15 +176,6 @@ KBUILD_HOSTCFLAGS += -I$(srctree)/tools/lib/ -I$(srctree)/tools/include KBUILD_HOSTCFLAGS += -I$(srctree)/tools/perf HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable -HOSTCFLAGS_trace_helpers.o += -I$(srctree)/tools/lib/bpf/ - -HOSTCFLAGS_trace_output_user.o += -I$(srctree)/tools/lib/bpf/ -HOSTCFLAGS_offwaketime_user.o += -I$(srctree)/tools/lib/bpf/ -HOSTCFLAGS_spintest_user.o += -I$(srctree)/tools/lib/bpf/ -HOSTCFLAGS_trace_event_user.o += -I$(srctree)/tools/lib/bpf/ -HOSTCFLAGS_sampleip_user.o += -I$(srctree)/tools/lib/bpf/ -HOSTCFLAGS_task_fd_query_user.o += -I$(srctree)/tools/lib/bpf/ -HOSTCFLAGS_xdp_sample_pkts_user.o += -I$(srctree)/tools/lib/bpf/ KBUILD_HOSTLDLIBS += $(LIBBPF) -lelf HOSTLDLIBS_tracex4 += -lrt |