diff options
author | Paolo Bonzini | 2020-09-04 16:00:26 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-09-30 19:11:36 +0200 |
commit | 84ec0c24357250b53fd6034f0dfe5254f0e4458b (patch) | |
tree | 5a9464f062733b85aa204f857251a603f5d817a0 /configure | |
parent | configure: move malloc_trim/tcmalloc/jemalloc to meson (diff) | |
download | qemu-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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |