diff options
author | midipix <writeonce@midipix.org> | 2016-06-25 15:37:10 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-25 17:31:39 -0400 |
commit | a96414014bb0414c012c64f45343b591a9adfa66 (patch) | |
tree | 98300bc67d7a944d6434236719997a757b6fc9ad | |
parent | 9e67a4a4437bce28c494b957b7ee03a3683e60ed (diff) | |
download | sofort-a96414014bb0414c012c64f45343b591a9adfa66.tar.bz2 sofort-a96414014bb0414c012c64f45343b591a9adfa66.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 |