diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 13:45:53 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 14:55:55 +0000 |
commit | eb289539c4407212af28b95394ccd18c43e732c4 (patch) | |
tree | 2ace3baafe3253ba2cf1f38c8490aa986cc248ea /configure | |
parent | 21062c1029112ba4042792dd7e714c0d1c2f1280 (diff) | |
download | apimagic-eb289539c4407212af28b95394ccd18c43e732c4.tar.bz2 apimagic-eb289539c4407212af28b95394ccd18c43e732c4.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 |