mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-11 13:30:07 -05:00
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:
parent
f6391be214
commit
737851df6c
1 changed files with 1 additions and 1 deletions
|
|
@ -19,5 +19,5 @@
|
|||
|
||||
rm -rf ./build
|
||||
mkdir build
|
||||
meson build $@
|
||||
meson build "$@"
|
||||
ln -s build/Makefile Makefile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue