From 295f647147efcad36afbb5ee289b452643051b0f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 1 Feb 2011 18:04:37 +0000 Subject: [PATCH] avoid use of bash let statement git-svn-id: svn://localhost/ardour2/branches/3.0@8650 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 c0503988af..15ed61811d 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -272,7 +272,7 @@ versionDir=`ls ${GTKROOT}/gtk-2.0/ | grep "[0-9]*\.[0-9]*\.[0-9]*"` num=0 for name in $versionDir ; do - let "num += 1" + $num=$(($num + 1)) done if [ $num -eq 1 ]; then @@ -306,7 +306,7 @@ versionDir=`ls ${PANGOROOT}/pango/ | grep "[0-9]*\.[0-9]*\.[0-9]*"` num=0 for name in $versionDir ; do - let "num += 1" + $num=$(($num + 1)) done if [ $num -eq 1 ]; then