diff options
author | midipix <writeonce@midipix.org> | 2016-11-12 10:16:53 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-12 10:19:55 -0500 |
commit | 6c18e1e3ffb7334d1ab0312bcb0e33dc04862616 (patch) | |
tree | b94f3c52889a1695fccbbed780031ad5c30f5c42 | |
parent | 3453292077ddacb6066bf100c5bcd7fa5ac572ac (diff) | |
download | pemagine-6c18e1e3ffb7334d1ab0312bcb0e33dc04862616.tar.bz2 pemagine-6c18e1e3ffb7334d1ab0312bcb0e33dc04862616.tar.xz |
build system: configure: mb_native_os: respect overrides.
-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 }'` |