summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorPaolo Bonzini2020-09-04 16:00:26 +0200
committerPaolo Bonzini2020-09-30 19:11:36 +0200
commit84ec0c24357250b53fd6034f0dfe5254f0e4458b (patch)
tree5a9464f062733b85aa204f857251a603f5d817a0 /configure
parentconfigure: move malloc_trim/tcmalloc/jemalloc to meson (diff)
downloadqemu-84ec0c24357250b53fd6034f0dfe5254f0e4458b.tar.gz
qemu-84ec0c24357250b53fd6034f0dfe5254f0e4458b.tar.xz
qemu-84ec0c24357250b53fd6034f0dfe5254f0e4458b.zip
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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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)