summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2011-12-06 10:01:22 -0800
committerKaz Kylheku <kaz@kylheku.com>2011-12-06 10:01:22 -0800
commit6cf90c4dc732318823adf7ec96e88e9e7772d4cf (patch)
treeaaa3acf0c1de56ae05bf7a028a6b9177a47d9524
parentfb5a4fd5b1bb82c69bcb1e0c7db7bc236cf0f3d5 (diff)
downloadtxr-6cf90c4dc732318823adf7ec96e88e9e7772d4cf.tar.gz
txr-6cf90c4dc732318823adf7ec96e88e9e7772d4cf.tar.bz2
txr-6cf90c4dc732318823adf7ec96e88e9e7772d4cf.zip
2011-12-06 Kaz Kylheku <kaz@kylheku.com>
* configure: Previous change has to be repeated in one more place in the script: removing useless eval, treating octal number.
-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* )