mirror of
https://github.com/systemd/systemd.git
synced 2024-11-02 02:21:44 +03:00
22 lines
337 B
Plaintext
22 lines
337 B
Plaintext
|
#!/bin/bash -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[@]}"
|