diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:53:18 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 16:20:33 -0500 |
commit | 75e6dee6d7ba1fbb04e6a95eb5c1c9d2ac3091b5 (patch) | |
tree | 4621be3a7537d134e16c74f0363621e811587ec4 /configure | |
parent | 169bd06799bcd07b6cfdef6c2fd809bfc59a139a (diff) | |
download | ntcon-75e6dee6d7ba1fbb04e6a95eb5c1c9d2ac3091b5.tar.bz2 ntcon-75e6dee6d7ba1fbb04e6a95eb5c1c9d2ac3091b5.tar.xz |
build system: render detection of the native compiler informational only.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -223,8 +223,8 @@ native_defaults() $mb_native_cc -dM -E - < /dev/null > /dev/null 2>/dev/null || mb_native_cc= if [ -z "$mb_native_cc" ]; then - error_msg "config error: could not find a working native compiler." - exit 2 + echo "configure: info: could not find a working native compiler." + mb_native_cc='false' fi if [ -z "$mb_compiler" ]; then @@ -240,8 +240,8 @@ native_defaults() fi if [ -z "$mb_compiler" ]; then - error_msg "config error: could not identify the native compiler." - exit 2 + echo "configure: info: could not identify the native compiler." + mb_compiler='any-compiler' fi |