summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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}'`