tools: bpftool: fix dependency file path
Auto-generated dependency files are in the OUTPUT directory, we need to include them from there. This fixes object files not being rebuilt after header changes. Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
parent
68de5ef4c7
commit
90126e3a40
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ ifeq ($(feature-disassembler-four-args), 1)
|
||||||
CFLAGS += -DDISASM_FOUR_ARGS_SIGNATURE
|
CFLAGS += -DDISASM_FOUR_ARGS_SIGNATURE
|
||||||
endif
|
endif
|
||||||
|
|
||||||
include $(wildcard *.d)
|
include $(wildcard $(OUTPUT)*.d)
|
||||||
|
|
||||||
all: $(OUTPUT)bpftool
|
all: $(OUTPUT)bpftool
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue