summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-06-25 16:18:15 -0400
committermidipix <writeonce@midipix.org>2016-06-25 17:34:24 -0400
commit968b439faca6a69713a004e954c0b1915a36d879 (patch)
tree8ebbc8a39f303b016060861965f3ae0a3a57b99d /configure
parent0947de4fa8e5b33a4906524b29215d0d52624fec (diff)
downloadpemagine-968b439faca6a69713a004e954c0b1915a36d879.tar.bz2
pemagine-968b439faca6a69713a004e954c0b1915a36d879.tar.xz
build system: configure test optimization: remove `expr` sub-shell invocation.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 309b128..6894bc6 100755
--- a/configure
+++ b/configure
@@ -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='_'