summaryrefslogtreecommitdiff
path: root/tools/linux_packaging
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-02-01 18:04:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-02-01 18:04:37 +0000
commit295f647147efcad36afbb5ee289b452643051b0f (patch)
treede51f9202374fc219c705cc8480f1e6754fbcbad /tools/linux_packaging
parentf519d7fc7d7302b4219806f042be4cbe2bbef031 (diff)
avoid use of bash let statement
git-svn-id: svn://localhost/ardour2/branches/3.0@8650 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools/linux_packaging')
-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 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