mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
25 lines
428 B
Bash
Executable File
25 lines
428 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
cflags="CFLAGS=${CFLAGS-}"
|
|
cxxflags="CXXFLAGS=${CXXFLAGS-}"
|
|
args=()
|
|
|
|
for arg in "$@"; do
|
|
case "$arg" in
|
|
CFLAGS=*)
|
|
cflags="$arg"
|
|
;;
|
|
CXXFLAGS=*)
|
|
cxxflags="$arg"
|
|
;;
|
|
*)
|
|
args+=("$arg")
|
|
esac
|
|
done
|
|
|
|
export "${cflags?}" "${cxxflags?}"
|
|
set -x
|
|
exec meson build "${args[@]}"
|