summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-02-01 18:13:21 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-02-01 18:13:21 +0000
commitfea976d6decff583378f60734fa284e0f24579a3 (patch)
treeb2e75f459d0d37f997c4513383af7f21f06259ec /tools
parent70512f34e8cd51ae5089b8bae5d0618626ea275c (diff)
mo' better math expressions
git-svn-id: svn://localhost/ardour2/branches/3.0@8653 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build4
1 files 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}'`