diff options
author | Shuah Khan <skhan@linuxfoundation.org> | 2019-09-26 19:13:44 -0600 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2019-09-30 10:53:34 +0200 |
commit | 55d554f5d14071f7c2c5dbd88d0a2eb695c97d16 (patch) | |
tree | 85687b7767bf1c94f63f8c4d7944068e19dfca84 /tools/lib | |
parent | 02dc96ef6c25f990452c114c59d75c368a1f4c8f (diff) | |
download | linux-55d554f5d14071f7c2c5dbd88d0a2eb695c97d16.tar.gz linux-55d554f5d14071f7c2c5dbd88d0a2eb695c97d16.tar.bz2 linux-55d554f5d14071f7c2c5dbd88d0a2eb695c97d16.zip |
tools: bpf: Use !building_out_of_srctree to determine srctree
make TARGETS=bpf kselftest fails with:
Makefile:127: tools/build/Makefile.include: No such file or directory
When the bpf tool make is invoked from tools Makefile, srctree is
cleared and the current logic check for srctree equals to empty
string to determine srctree location from CURDIR.
When the build in invoked from selftests/bpf Makefile, the srctree
is set to "." and the same logic used for srctree equals to empty is
needed to determine srctree.
Check building_out_of_srctree undefined as the condition for both
cases to fix "make TARGETS=bpf kselftest" build failure.
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Song Liu <songliubraving@fb.com>
Link: https://lore.kernel.org/bpf/20190927011344.4695-1-skhan@linuxfoundation.org
Diffstat (limited to 'tools/lib')
-rw-r--r-- | tools/lib/bpf/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/lib/bpf/Makefile b/tools/lib/bpf/Makefile index c6f94cffe06e..20772663d3e1 100644 --- a/tools/lib/bpf/Makefile +++ b/tools/lib/bpf/Makefile @@ -8,7 +8,11 @@ LIBBPF_MAJOR_VERSION := $(firstword $(subst ., ,$(LIBBPF_VERSION))) MAKEFLAGS += --no-print-directory -ifeq ($(srctree),) +# This will work when bpf is built in tools env. where srctree +# isn't set and when invoked from selftests build, where srctree +# is a ".". building_out_of_srctree is undefined for in srctree +# builds +ifndef building_out_of_srctree srctree := $(patsubst %/,%,$(dir $(CURDIR))) srctree := $(patsubst %/,%,$(dir $(srctree))) srctree := $(patsubst %/,%,$(dir $(srctree))) |