diff options
author | midipix <writeonce@midipix.org> | 2016-06-25 15:37:10 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:46 -0500 |
commit | 7289b43cb1f8cb9cfcbc95616a4867034199b567 (patch) | |
tree | cd6e31558a6de097159b60ddb667439d87d84d13 | |
parent | 6160161072f0fceda4a712a82847162eb6a2b566 (diff) | |
download | mdso-7289b43cb1f8cb9cfcbc95616a4867034199b567.tar.bz2 mdso-7289b43cb1f8cb9cfcbc95616a4867034199b567.tar.xz |
build system: warn only upon failure to detect native sizeof(void *).
-rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -16,6 +16,11 @@ error_msg() echo "$@" >&2 } +warning_msg() +{ + echo "$@" >&2 +} + init_vars() { @@ -317,8 +322,7 @@ native_defaults() fi if [ -z "$mb_native_os_sizeof_pointer" ]; then - error_msg "config error: could not determine size of pointer on native system." - exit 2 + warning_msg "config error: could not determine size of pointer on native system." fi # fallback os recipe |