diff options
author | midipix <writeonce@midipix.org> | 2021-06-13 07:28:30 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-13 07:29:09 +0000 |
commit | ddddfecf181ff70d4226878559d74dc0503b1de9 (patch) | |
tree | fff7644f3419edbc6845192d2d135984b0c06cd5 /configure | |
parent | 8b55c0adc5489387915b7f162c742c4e2fc9ade1 (diff) | |
download | ntapi-ddddfecf181ff70d4226878559d74dc0503b1de9.tar.bz2 ntapi-ddddfecf181ff70d4226878559d74dc0503b1de9.tar.xz |
build system: configure, ccenv: enhanced --sysroot logic.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -813,8 +813,15 @@ config_ccenv() output_section_break ccenv_set_native_variables + # implicit --sysroot for use with pkgconf and friends + if [ -z "$mb_sysroot" ]; then + mb_sysroot="$ccenv_host_sysroot" + fi + # require --sysroot when cross-compiling - if [ "$mb_cchost" != "$mb_native_cchost" ] && [ -z "$mb_sysroot" ]; then + if [ "$mb_cchost" != "$mb_native_cchost" ] \ + && [ "$ccenv_host_cc" != "$ccenv_native_cc" ] \ + && [ -z "$mb_sysroot" ]; then mb_pretty=$(printf "%-${#mb_package}s" '') error_msg ' !!' |