1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-05 09:17:44 +03:00
systemd-stable/configure
Zbigniew Jędrzejewski-Szmek 50eb8ff286 configure: update meson invocation
New meson says:
WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.

Inspired by https://github.com/systemd/systemd/issues/28482.

(cherry picked from commit 4f3c90acfe)
(cherry picked from commit ce856bb8c2)
(cherry picked from commit d1198b7760)
2023-08-10 09:43:05 +01:00

25 lines
434 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 setup build "${args[@]}"