Re: [PATCH] net/tap/bpf: fix meson warning

2024-07-06 Thread Ferruh Yigit
On 6/25/2024 6:17 PM, Bruce Richardson wrote: > On Tue, Jun 25, 2024 at 10:06:52AM -0700, Stephen Hemminger wrote: >> Meson was warning that run_command was used without check and >> the result of that will change in future version. >> >> In this case, the command (uname -m) should be checked. >> >

Re: [PATCH] net/tap/bpf: fix meson warning

2024-06-25 Thread Bruce Richardson
On Tue, Jun 25, 2024 at 10:06:52AM -0700, Stephen Hemminger wrote: > Meson was warning that run_command was used without check and > the result of that will change in future version. > > In this case, the command (uname -m) should be checked. > > Signed-off-by: Stephen Hemminger > --- Acked-by:

[PATCH] net/tap/bpf: fix meson warning

2024-06-25 Thread Stephen Hemminger
Meson was warning that run_command was used without check and the result of that will change in future version. In this case, the command (uname -m) should be checked. Signed-off-by: Stephen Hemminger --- drivers/net/tap/bpf/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) dif