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 <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini
2020-09-30 19:11:36 +02:00
parent aa087962d7
commit 84ec0c2435
Vendored
+1 -1
View File
@@ -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)