|
From: <sv...@va...> - 2014-02-22 13:33:42
|
Author: florian
Date: Sat Feb 22 13:24:15 2014
New Revision: 13830
Log:
Avoid "let" which isn't portable.
Modified:
trunk/configure.ac
Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Sat Feb 22 13:24:15 2014
@@ -771,7 +771,7 @@
if test "$psize" = "0"; then
psizer=`getconf PAGESIZE`
- let "psize=${psizer}/1024"
+ psize=$((${psizer}/1024))
fi
if test "$psize" = "4"; then
|