From 62afada593fec9c37ef10d09c2ebbfeb6b38bcee Mon Sep 17 00:00:00 2001 From: Thomas Zimmermann Date: Fri, 17 May 2019 10:18:47 +0200 Subject: [PATCH] autogen.sh: Put meson arguments right after command name According to the meson man page, arguments go directly after the command's name. Rearrange the call accordingly. Signed-off-by: Thomas Zimmermann --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 9f9f268d9..d66b83680 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,5 +18,5 @@ # Only there to make jhbuild happy mkdir -p build -meson setup build "$@" # use 'autogen.sh --reconfigure' to update +meson setup "$@" build # use 'autogen.sh --reconfigure' to update ln -sf build/Makefile Makefile