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