diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 06:41:09 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 06:42:19 -0500 |
commit | a4d33700116d713ce7381965ef0aa596d4492dde (patch) | |
tree | ee90abd1d599a047ae908e9ea7732e5fd1b8a210 | |
parent | 254347cb22f86175eb3bb1cec2df55138bad5aa6 (diff) | |
download | bfirm-a4d33700116d713ce7381965ef0aa596d4492dde.tar.bz2 bfirm-a4d33700116d713ce7381965ef0aa596d4492dde.tar.xz |
build system: configure: properly record the inherited CFLAGS and LDFLAGS.
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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" } |