From: Dmitrii Dolgov <9erthalion6@gmail.com> Date: Tue, 10 Feb 2026 12:01:18 +0000 (-0300) Subject: tools build: Make test-rust.bin be removed by the 'clean' target X-Git-Url: http://git.monstr.eu/?a=commitdiff_plain;h=84a654f786414a74a15a7b61929d1ced06687310;p=linux-2.6-microblaze.git tools build: Make test-rust.bin be removed by the 'clean' target test-rust.bin is missing from the list of FILES, and thus is not removed by the clean target. This could lead to a false feature detection, since the binary stays there. Fix it. Fixes: 6a32fa5ccd33da5d ("tools build: Add a feature test for rust compiler") Tested-by: Arnaldo Carvalho de Melo Signed-off-by: Dmitrii Dolgov <9erthalion6@gmail.com> Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/build/feature/Makefile b/tools/build/feature/Makefile index 9ae69d857166..cc53d4e5f8d8 100644 --- a/tools/build/feature/Makefile +++ b/tools/build/feature/Makefile @@ -73,6 +73,7 @@ FILES= \ test-clang-bpf-co-re.bin \ test-file-handle.bin \ test-libpfm4.bin \ + test-rust.bin \ test-libopenssl.bin FILES := $(addprefix $(OUTPUT),$(FILES))