Re: [PATCH bpf] selftests/bpf: fix silent Makefile output

2020-08-07 Thread Daniel Borkmann
On 8/7/20 5:30 AM, Andrii Nakryiko wrote: 99aacebecb75 ("selftests: do not use .ONESHELL") removed .ONESHELL, which changes how Makefile "silences" multi-command target recipes. selftests/bpf's Makefile relied (a somewhat unknowingly) on .ONESHELL behavior of silencing all commands within the rec

[PATCH bpf] selftests/bpf: fix silent Makefile output

2020-08-06 Thread Andrii Nakryiko
99aacebecb75 ("selftests: do not use .ONESHELL") removed .ONESHELL, which changes how Makefile "silences" multi-command target recipes. selftests/bpf's Makefile relied (a somewhat unknowingly) on .ONESHELL behavior of silencing all commands within the recipe if the first command contains @ symbol.