summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index dc66a77e..db30c8e8 100755
--- a/configure
+++ b/configure
@@ -646,10 +646,10 @@ char sizeof_longlong_t[sizeof (longlong_t)];
sizeof_longlong_t=0
while read symbol type offset size ; do
- eval "size=$(( 0$size + 0 ))"
+ size=$(( 0$size + 0 ))
symbol=${symbol#_}
if [ "$type" = "C" ] ; then
- size=$offset
+ size=$(( 0$offset + 0 ))
fi
case "$symbol" in
sizeof* )