From 297266df1e9af404d65a895eec28ab170207873c Mon Sep 17 00:00:00 2001 From: midipix Date: Dec 31 2018 11:42:20 +0000 Subject: build system: configure: properly record the inherited CFLAGS and LDFLAGS. --- diff --git a/configure b/configure index e5fb030..914668e 100755 --- a/configure +++ b/configure @@ -362,6 +362,10 @@ common_defaults() mb_cflags_debug='-g3 -O0' fi fi + + # inherited cflags & ldflags + mb_cflags_cmdline="$mb_cflags_cmdline $mb_cflags" + mb_ldflags_cmdline="$mb_ldflags_cmdline $mb_ldflags" }