diff options
author | midipix <writeonce@midipix.org> | 2021-06-04 19:38:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-04 19:53:15 +0000 |
commit | c44552abd98833c00e74ba529dd19ee6e4767b17 (patch) | |
tree | ef4ad9531e0fad36f159a5402d0581b3f8044285 | |
parent | b2fc5f97c28ec97abb2a7e75ccbd3fa1ef80c398 (diff) | |
download | u16ports-c44552abd98833c00e74ba529dd19ee6e4767b17.tar.bz2 u16ports-c44552abd98833c00e74ba529dd19ee6e4767b17.tar.xz |
build system: configure: config_flags(): abstract the --strict cflags, ldflags.
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -688,12 +688,12 @@ config_flags() # ccstrict if [ _$mb_ccstrict = _yes ]; then - mb_cflags_strict='-Wall -Werror -Wextra -Wundef' + mb_cflags_strict='$(_CFLAGS_Wall) $(_CFLAGS_Werror) $(_CFLAGS_Wextra) $(_CFLAGS_Wundef)' fi # ldstrict if [ _$mb_ldstrict = _yes ]; then - mb_ldflags_strict='-Wl,--no-undefined' + mb_ldflags_strict='$(_CFLAGS_Wl___no_undefined)' fi # step epilog |