diff options
author | midipix <writeonce@midipix.org> | 2016-06-25 16:18:15 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-25 17:31:46 -0400 |
commit | bf95faf33b74f8fa5f0de2c94d0c53e4c9890990 (patch) | |
tree | 5c468da20261cdac2274d4417821a170af92829b /configure | |
parent | 16d92c851dc1c2ce1cf82aee90cf7353cf9fdd69 (diff) | |
download | apimagic-bf95faf33b74f8fa5f0de2c94d0c53e4c9890990.tar.bz2 apimagic-bf95faf33b74f8fa5f0de2c94d0c53e4c9890990.tar.xz |
build system: configure test optimization: remove `expr` sub-shell invocation.
Diffstat (limited to 'configure')
-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='_' |