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.
This commit is contained in:
ncraun-vivint 2019-01-28 11:01:19 -05:00 committed by Wim Taymans
parent 27e997a032
commit bb2b15a5fb

View file

@ -7,5 +7,5 @@ git submodule update
rm -rf ./build
mkdir build
meson build $@
meson build "$@"
ln -s build/Makefile Makefile