diff mbox series

[bpf-next,v2,4/5] selftests/bpf: Fix installation of urandom_read

Message ID 20210113163319.1516382-5-jean-philippe@linaro.org
State Accepted
Commit ca1e846711a8f49382005eb5feb82973fa88a849
Headers show
Series selftests/bpf: Some build fixes | expand

Commit Message

Jean-Philippe Brucker Jan. 13, 2021, 4:33 p.m. UTC
For out-of-tree builds, $(TEST_CUSTOM_PROGS) require the $(OUTPUT)
prefix, otherwise the kselftest lib doesn't know how to install them:

rsync: [sender] link_stat "tools/testing/selftests/bpf/urandom_read" failed: No such file or directory (2)

Acked-by: Andrii Nakryiko <andrii@kernel.org>

Signed-off-by: Jean-Philippe Brucker <jean-philippe@linaro.org>

---
 tools/testing/selftests/bpf/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.30.0
diff mbox series

Patch

diff --git a/tools/testing/selftests/bpf/Makefile b/tools/testing/selftests/bpf/Makefile
index 67cdf858f01f..0fafdc022ac3 100644
--- a/tools/testing/selftests/bpf/Makefile
+++ b/tools/testing/selftests/bpf/Makefile
@@ -82,7 +82,7 @@  TEST_GEN_PROGS_EXTENDED = test_sock_addr test_skb_cgroup_id_user \
 	test_lirc_mode2_user xdping test_cpp runqslower bench bpf_testmod.ko \
 	xdpxceiver
 
-TEST_CUSTOM_PROGS = urandom_read
+TEST_CUSTOM_PROGS = $(OUTPUT)/urandom_read
 
 # Emit succinct information message describing current building step
 # $1 - generic step name (e.g., CC, LINK, etc);