Commit 96444283 authored by Ferenc Wagner's avatar Ferenc Wagner Committed by Alexandre Julliard

Solaris sh portability fix.

parent d8e98d3a
......@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment