diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:53:18 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 14:42:48 -0500 |
commit | d9d2393ec6b36ce5f91b0e4a7d6ce6ed949d77d1 (patch) | |
tree | f0fd5fa6135e41b00cece761e1cf08553899bd89 /configure | |
parent | e28ab79e934209548f2a117cc855f2d41d0f3e32 (diff) | |
download | apimagic-d9d2393ec6b36ce5f91b0e4a7d6ce6ed949d77d1.tar.bz2 apimagic-d9d2393ec6b36ce5f91b0e4a7d6ce6ed949d77d1.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
@@ -227,8 +227,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 @@ -244,8 +244,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 |