mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04: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
27e997a032
commit
bb2b15a5fb
1 changed files with 1 additions and 1 deletions
|
|
@ -7,5 +7,5 @@ git submodule update
|
|||
|
||||
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