diff options
author | midipix <writeonce@midipix.org> | 2016-11-12 10:16:53 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-12 10:20:57 -0500 |
commit | 0bd690062da1d4e53f7cda384ff1fe04dd1f2a35 (patch) | |
tree | cb2c666e5b78528a4fff16632880d9062eeeb13a /configure | |
parent | aabe65b85775d9067972fd9204a5868d1ce6f065 (diff) | |
download | sofort-0bd690062da1d4e53f7cda384ff1fe04dd1f2a35.tar.bz2 sofort-0bd690062da1d4e53f7cda384ff1fe04dd1f2a35.tar.xz |
build system: configure: mb_native_os: respect overrides.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -330,7 +330,9 @@ native_defaults() # os - mb_native_os=`uname | tr '[:upper:]' '[:lower:]'` + if [ -z "$mb_native_os" ]; then + mb_native_os=`uname | tr '[:upper:]' '[:lower:]'` + fi mb_native_os_sizeof_pointer=`$mb_native_cc -dM -E - < /dev/null \ | awk '$2 == "__SIZEOF_POINTER__" { print $3 }'` |