diff options
author | midipix <writeonce@midipix.org> | 2018-12-31 06:41:09 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-31 06:42:20 -0500 |
commit | 4ddf9717cddbaacd2d05e2c3599a30344935cd21 (patch) | |
tree | a52e87af89003956dacc2640abbe74db18f208fe | |
parent | d87a854416dff38aa61ddb5c244675fe823fb2e0 (diff) | |
download | sbpython3-4ddf9717cddbaacd2d05e2c3599a30344935cd21.tar.bz2 sbpython3-4ddf9717cddbaacd2d05e2c3599a30344935cd21.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" } |