mirror of
https://github.com/systemd/systemd.git
synced 2024-11-07 01:27:11 +03:00
11 lines
136 B
Bash
11 lines
136 B
Bash
|
#!/bin/sh
|
||
|
set -eux
|
||
|
|
||
|
src="$1"
|
||
|
dst="$2"
|
||
|
target="$3"
|
||
|
options="$4"
|
||
|
|
||
|
[ -d "$dst" ] || meson "$src" "$dst" $options
|
||
|
ninja -C "$dst" "$target"
|