Re: [PATCH 1/3] meson: Only build virtfs-proxy-helper if all requisites are found

2021-05-25 Thread Richard Henderson
On 5/25/21 3:46 AM, Philippe Mathieu-Daudé wrote: We first set have_virtfs_proxy_helper depending on have_virtfs, then update have_virtfs... While this might work, it is not clear when looking at the code logic. Move the have_virtfs_proxy_helper assignation*after* updating have_virtfs to make it

[PATCH 1/3] meson: Only build virtfs-proxy-helper if all requisites are found

2021-05-25 Thread Philippe Mathieu-Daudé
We first set have_virtfs_proxy_helper depending on have_virtfs, then update have_virtfs... While this might work, it is not clear when looking at the code logic. Move the have_virtfs_proxy_helper assignation *after* updating have_virtfs to make it obvious. Signed-off-by: Philippe Mathieu-Daudé --