pipewire/autogen.sh
ncraun-vivint bb2b15a5fb 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.
2019-02-13 11:24:38 +01:00

11 lines
162 B
Bash
Executable file

#!/bin/sh
# Only there to make jhbuild happy
git submodule init
git submodule update
rm -rf ./build
mkdir build
meson build "$@"
ln -s build/Makefile Makefile