mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
According to the meson man page, arguments go directly after the command's name. Rearrange the call accordingly. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
10 lines
201 B
Bash
Executable file
10 lines
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Only there to make jhbuild happy
|
|
|
|
git submodule init
|
|
git submodule update
|
|
|
|
mkdir -p build
|
|
meson setup "$@" build # use 'autogen.sh --reconfigure' to update
|
|
ln -sf build/Makefile Makefile
|