From: Paolo Bonzini Date: Fri, 4 Sep 2020 14:00:26 +0000 (-0400) Subject: configure: fix --meson=/path/to/meson X-Git-Tag: v5.2.0-rc0~82^2~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84ec0c24357250b53fd6034f0dfe5254f0e4458b;p=thirdparty%2Fqemu.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 cfbac88d9ba..1c05932a72f 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)