diff options
author | midipix <writeonce@midipix.org> | 2016-06-25 16:18:15 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-25 17:34:42 -0400 |
commit | 2266b2f37333c7b69304ed2d61776c9b21abe5fb (patch) | |
tree | 484e4fcb4b5b29d2176dbda12a86c205dd2a623f | |
parent | 404306ffb92f889070c9b2e1bd13531013c7ca7a (diff) | |
download | dalist-2266b2f37333c7b69304ed2d61776c9b21abe5fb.tar.bz2 dalist-2266b2f37333c7b69304ed2d61776c9b21abe5fb.tar.xz |
build system: configure test optimization: remove `expr` sub-shell invocation.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -316,7 +316,7 @@ native_defaults() mb_native_os_sizeof_pointer=`$mb_native_cc -dM -E - < /dev/null \ | awk '$2 == "__SIZEOF_POINTER__" { print $3 }'` - mb_native_os_bits=`expr '8' '*' '0'"$mb_native_os_sizeof_pointer"` + mb_native_os_bits=$((8 * ${mb_native_os_sizeof_pointer:-0})) if [ $mb_native_os_bits = 32 ]; then mb_native_os_underscore='_' |