From fea976d6decff583378f60734fa284e0f24579a3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 1 Feb 2011 18:13:21 +0000 Subject: [PATCH] mo' better math expressions git-svn-id: svn://localhost/ardour2/branches/3.0@8653 d708f5d6-7413-0410-9779-e7cbd77b26cf --- tools/linux_packaging/build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index ba5eda007b..8fe1db50da 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -346,7 +346,7 @@ if [ -z ${GDKPIXBUFLIB} ]; then num=0 for name in $versionDir ; do - let "num += 1" + num=$(($num + 1)) done if [ $num -eq 1 ]; then @@ -432,7 +432,7 @@ while [ true ] ; do fi done depCheckedList[$checkIdx]=$file - let "checkIdx += 1" + checkIdx=$(($checkIdx + 1)) # do not include libjack deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | awk '{print $3}'`