From bb2b15a5fbafa45871efeac2f26b826f81f3390c Mon Sep 17 00:00:00 2001 From: ncraun-vivint <43623033+ncraun-vivint@users.noreply.github.com> Date: Mon, 28 Jan 2019 11:01:19 -0500 Subject: [PATCH] Quote "$@" in autogen.sh An unquoted $@ will break for arguments with spaces in their names. Unquoted $@ will work until it doesn't, and then it can be tricky to track down exactly what went wrong. Using "$@" will save someone some headache in the future. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 787d8b68e..557d06ecf 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,5 +7,5 @@ git submodule update rm -rf ./build mkdir build -meson build $@ +meson build "$@" ln -s build/Makefile Makefile