From 6b61dd4d6df847faaab40f48dd8bfab23fcfd157 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 16 Nov 2023 17:04:56 +0100 Subject: [PATCH] build: add CFLAGS back when building with muon Previous commit dropped the CLFAGS from the muon configuration step. Add it back. Signed-off-by: Daniel Wagner --- scripts/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 83751b69..5a615ae0 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -170,7 +170,8 @@ tools_build_muon() { } config_muon_default() { - CC="${CC}" ninja="${SAMU}" "${MUON}" setup \ + CC="${CC}" CFLAGS="${CFLAGS}" ninja="${SAMU}" \ + "${MUON}" setup \ -Ddefault_library=static \ -Dc_link_args="-static" \ -Djson-c=disabled \ -- 2.50.1