diff options
author | Daniel T. Lee <danieltimlee@gmail.com> | 2019-06-15 11:14:46 -0400 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-06-17 18:28:36 -0400 |
commit | fa206dccd85d7682d36de4ccca1549e93c501d9d (patch) | |
tree | 3c136c7e75f51f921cbeb61e1e8c45bc2dffabf4 /samples/bpf | |
parent | 32b88d3743573222c3ce0165727b6a4c4f7c245b (diff) |
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/bpf')
-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 | |||
176 | KBUILD_HOSTCFLAGS += -I$(srctree)/tools/perf | 176 | KBUILD_HOSTCFLAGS += -I$(srctree)/tools/perf |
177 | 177 | ||
178 | HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable | 178 | HOSTCFLAGS_bpf_load.o += -I$(objtree)/usr/include -Wno-unused-variable |
179 | HOSTCFLAGS_trace_helpers.o += -I$(srctree)/tools/lib/bpf/ | ||
180 | |||
181 | HOSTCFLAGS_trace_output_user.o += -I$(srctree)/tools/lib/bpf/ | ||
182 | HOSTCFLAGS_offwaketime_user.o += -I$(srctree)/tools/lib/bpf/ | ||
183 | HOSTCFLAGS_spintest_user.o += -I$(srctree)/tools/lib/bpf/ | ||
184 | HOSTCFLAGS_trace_event_user.o += -I$(srctree)/tools/lib/bpf/ | ||
185 | HOSTCFLAGS_sampleip_user.o += -I$(srctree)/tools/lib/bpf/ | ||
186 | HOSTCFLAGS_task_fd_query_user.o += -I$(srctree)/tools/lib/bpf/ | ||
187 | HOSTCFLAGS_xdp_sample_pkts_user.o += -I$(srctree)/tools/lib/bpf/ | ||
188 | 179 | ||
189 | KBUILD_HOSTLDLIBS += $(LIBBPF) -lelf | 180 | KBUILD_HOSTLDLIBS += $(LIBBPF) -lelf |
190 | HOSTLDLIBS_tracex4 += -lrt | 181 | HOSTLDLIBS_tracex4 += -lrt |