From: Paolo Bonzini Date: Fri, 4 Sep 2020 14:00:26 +0000 (-0400) Subject: configure: fix --meson=/path/to/meson X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=84ec0c24357250b53fd6034f0dfe5254f0e4458b;p=qemu.git configure: fix --meson=/path/to/meson Due to a cut-and-paste error, the path to a user-specified meson was ignored and replaced by whatever was in the path. Reviewed-by: Richard Henderson Signed-off-by: Paolo Bonzini --- diff --git a/configure b/configure index cfbac88d9b..1c05932a72 100755 --- a/configure +++ b/configure @@ -2015,7 +2015,7 @@ case "$meson" in fi meson="$python ${source_path}/meson/meson.py" ;; - *) meson=$(command -v meson) ;; + *) meson=$(command -v "$meson") ;; esac # Probe for ninja (used for compdb)