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 f6391be214
commit 737851df6c

View file

@ -19,5 +19,5 @@
rm -rf ./build rm -rf ./build
mkdir build mkdir build
meson build $@ meson build "$@"
ln -s build/Makefile Makefile ln -s build/Makefile Makefile