Skip to content

Commit

Permalink
mangle-hw-libs.sh: Fix math expression
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Apr 4, 2020
1 parent b8200be commit dba741d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installer/mangle-hw-libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ -w "${hwlib}" ]; then
-e 's,/usr\(/lib/vdpau\),\./\.\.\1,g' \
"${hwlib}"
echo " done."
((processed+=1))
((processed = $processed + 1))
else
echo " NOT found, skipping."
fi
Expand All @@ -48,7 +48,7 @@ if [ -w "${hwlib}" ]; then
# /usr/lib/x86_64-linux-gnu/dri => ./../lib/x86_64-linux-gnu/dri
sed -i -e 's,/usr\(/lib/x86_64-linux-gnu/dri\),\./\.\.\1,g' "${hwlib}"
echo " done."
((processed+=1))
((processed = $processed + 1))
else
echo " NOT found, skipping."
fi
Expand Down

0 comments on commit dba741d

Please sign in to comment.