diff options
author | midipix <writeonce@midipix.org> | 2021-06-12 11:49:54 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-12 12:15:44 +0000 |
commit | c92f25951c424b57564f1810d7094e9098f81024 (patch) | |
tree | f07848984919ead601d72875109e32ba1ccc9233 | |
parent | c8f64e8ffc406b635c3870c3d3a1f65aa354a392 (diff) | |
download | sbpython2-c92f25951c424b57564f1810d7094e9098f81024.tar.bz2 sbpython2-c92f25951c424b57564f1810d7094e9098f81024.tar.xz |
build system: configure: config_ccenv(): require --sysroot when cross-compiling.
-rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -816,8 +816,17 @@ config_ccenv() output_section_break ccenv_set_native_variables + # require --sysroot when cross-compiling + if [ "$mb_cchost" != "$mb_native_cchost" ] && [ -z "$mb_sysroot" ]; then + error_msg ' !!' + error_msg "$mb_package: --sysroot is required when cross-compiling." + exit 2 + fi + + # re-generate Makefile.tmp output_section_break config_copy + } config_custom_cfgdefs() |