summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-11-12 10:16:53 -0500
committermidipix <writeonce@midipix.org>2016-11-12 10:19:37 -0500
commit33ec1f5cb49400b525288f560734d30a097af8df (patch)
tree4a36b1b193359e16a6000dfda1805d7faeee97fb /configure
parent97c00019655e22ed366547ea0f1cce85aafeca09 (diff)
downloadmdso-33ec1f5cb49400b525288f560734d30a097af8df.tar.bz2
mdso-33ec1f5cb49400b525288f560734d30a097af8df.tar.xz
build system: configure: mb_native_os: respect overrides.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index baac353..c13f5f4 100755
--- a/configure
+++ b/configure
@@ -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 }'`