Otherwise meson's find_program() can get confused by the output; now in case of systemd build: meson.build:1059:16: ERROR: Invalid version of program, need 'bpftool' ['>= 5.6.0'] found '01'.
···11+Strip path to the binary from prints.
22+33+I see no sense in including the full path in outputs like bpftool --version
44+Especially as argv[0] may not include it, based on calling via $PATH or not.
55+--- a/tools/bpf/bpftool/main.c
66++++ b/tools/bpf/bpftool/main.c
77+@@ -443 +443,7 @@
88+- bin_name = argv[0];
99++ /* Strip the path if any. */
1010++ const char *bin_name_slash = strrchr(argv[0], '/');
1111++ if (bin_name_slash) {
1212++ bin_name = bin_name_slash + 1;
1313++ } else {
1414++ bin_name = argv[0];
1515++ }