* [PATCH] configure: fix --meson=/path/to/meson
@ 2020-09-16 8:08 Paolo Bonzini
2020-09-16 15:25 ` Richard Henderson
0 siblings, 1 reply; 2+ messages in thread
From: Paolo Bonzini @ 2020-09-16 8:08 UTC (permalink / raw)
To: qemu-devel
Due to a cut-and-paste error, the path to a user-specified meson
was ignored and replaced by whatever was in the path.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure
index 13f53ba231..d6fbadad27 100755
--- a/configure
+++ b/configure
@@ -2012,7 +2012,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)
--
2.26.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] configure: fix --meson=/path/to/meson
2020-09-16 8:08 [PATCH] configure: fix --meson=/path/to/meson Paolo Bonzini
@ 2020-09-16 15:25 ` Richard Henderson
0 siblings, 0 replies; 2+ messages in thread
From: Richard Henderson @ 2020-09-16 15:25 UTC (permalink / raw)
To: Paolo Bonzini, qemu-devel
On 9/16/20 1:08 AM, Paolo Bonzini wrote:
> Due to a cut-and-paste error, the path to a user-specified meson
> was ignored and replaced by whatever was in the path.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> configure | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-09-16 15:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-16 8:08 [PATCH] configure: fix --meson=/path/to/meson Paolo Bonzini
2020-09-16 15:25 ` Richard Henderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).