Solaris sh portability fix.

This commit is contained in:
Ferenc Wagner 2003-12-30 19:09:25 +00:00 committed by Alexandre Julliard
parent d8e98d3a0a
commit 9644428385
1 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ echo "0 \"$WINE_BUILD\""
i=0
for test
do
i=$(($i+1))
i=`expr $i + 1`
echo "$i \"$test\""
done
echo "}"
@ -20,6 +20,6 @@ echo "}"
i=0
for test
do
i=$(($i+1))
i=`expr $i + 1`
echo "$i USERDATA \"$test\""
done