From 7af045cf93d24459013c19a334fb7f6498f9aa5f 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 1fde59f3c..bbcc5adcc 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,5 +6,5 @@ git submodule init git submodule update 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