diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 13:45:53 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 14:55:59 +0000 |
commit | 53aca8ae2203e6b2d064e5a89ced0c1730c08b79 (patch) | |
tree | 78d5b95da12d0f17518a37ec786a8da9b4e7f73b /configure | |
parent | bfe912a66f28daac6530cbd413fc4010f065772e (diff) | |
download | ntcon-53aca8ae2203e6b2d064e5a89ced0c1730c08b79.tar.bz2 ntcon-53aca8ae2203e6b2d064e5a89ced0c1730c08b79.tar.xz |
build system: ccenv: added and integrated ccenv_set_cc_sysroot_vars().
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -651,11 +651,11 @@ common_defaults() # sysroot if [ -n "$mb_sysroot" ]; then if [ -z "$mb_cflags_sysroot" ]; then - mb_cflags_sysroot="--sysroot=$mb_sysroot" + mb_cflags_sysroot='$(_CFLAGS_SYSROOT)' fi if [ -z "$mb_ldflags_sysroot" ]; then - mb_ldflags_sysroot="--sysroot=$mb_sysroot" + mb_ldflags_sysroot='$(_LDFLAGS_SYSROOT)' fi fi |