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 | 69bae7c10fe223e14b260798bad06887cf39a364 (patch) | |
tree | cda2c15000b9c6d4d8c293a175d3a25a71207529 | |
parent | 819fc134ba9ce511ebd26a7dd334e69152e48b4e (diff) | |
download | sbpython2-69bae7c10fe223e14b260798bad06887cf39a364.tar.bz2 sbpython2-69bae7c10fe223e14b260798bad06887cf39a364.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" } |