summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorThomas Zimmermann <tzimmermann@suse.de>2019-05-17 10:18:47 +0200
committerWim Taymans <wtaymans@redhat.com>2019-05-23 10:14:10 +0200
commit7af045cf93d24459013c19a334fb7f6498f9aa5f (patch)
tree2baeb103539d5add8b6fba79e58fe8d6fe4125bc /autogen.sh
parent5f5403ff7541c4261684f19b7a796d07c5dfd698 (diff)
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 <tzimmermann@suse.de>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 1fde59f3..bbcc5adc 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