b9ddbf build system: configure: mb_native_os: respect overrides.

Authored and Committed by midipix 8 years ago
1 file changed. 3 lines added. 1 lines removed.
    build system: configure: mb_native_os: respect overrides.
    
        
file modified
+3 -1
configure CHANGED
@@ -330,7 +330,9 @@ native_defaults()
330
330
331
331
332
332
# os
333
- mb_native_os=`uname | tr '[:upper:]' '[:lower:]'`
333
+ if [ -z "$mb_native_os" ]; then
334
+ mb_native_os=`uname | tr '[:upper:]' '[:lower:]'`
335
+ fi
334
336
335
337
mb_native_os_sizeof_pointer=`$mb_native_cc -dM -E - < /dev/null \
336
338
| awk '$2 == "__SIZEOF_POINTER__" { print $3 }'`