diff options
author | midipix <writeonce@midipix.org> | 2016-11-12 10:16:53 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-12 10:20:42 -0500 |
commit | 182852ff4588a8d50c7775154b01c4e4f20a3647 (patch) | |
tree | c7cecb74148f31efd096661f60280da8fe7ce9f7 /configure | |
parent | f079d8316322d0b8600b97a479e7c139beab625c (diff) | |
download | ptycon-182852ff4588a8d50c7775154b01c4e4f20a3647.tar.bz2 ptycon-182852ff4588a8d50c7775154b01c4e4f20a3647.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 }'` |