diff options
author | midipix <writeonce@midipix.org> | 2016-06-25 15:37:10 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-09-21 19:45:53 -0400 |
commit | cbab7fa0703314d378ab648a6724bb82a63f23e9 (patch) | |
tree | 21181b691279e8565b92bc6f52d9c9c09a00fdb3 /configure | |
parent | b834d90a62f4302a4c36611385b4f9e750b7d867 (diff) | |
download | bcparser-cbab7fa0703314d378ab648a6724bb82a63f23e9.tar.bz2 bcparser-cbab7fa0703314d378ab648a6724bb82a63f23e9.tar.xz |
build system: warn only upon failure to detect native sizeof(void *).
Diffstat (limited to 'configure')
-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 |