mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
9ee03516df
Even though many of those scripts are very simple, it is easier to include the header than to try to say whether each of those files is trivial enough not to require one.
24 lines
394 B
Bash
Executable File
24 lines
394 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
cflags=CFLAGS="$CFLAGS"
|
|
cxxflags=CXXFLAGS="$CXXFLAGS"
|
|
declare -a args
|
|
j=0
|
|
for i in "$@"; do
|
|
case "$i" in
|
|
CFLAGS=*)
|
|
cflags="$i";;
|
|
CXXFLAGS=*)
|
|
cxxflags="$i";;
|
|
*)
|
|
args[$j]="$i"
|
|
j=$((j+1))
|
|
esac
|
|
done
|
|
|
|
export "$cflags" "$cxxflags"
|
|
set -x
|
|
exec meson build "${args[@]}"
|