Removed bashism

== does not exist in bourne shell
This commit is contained in:
fritz-hh
2013-11-27 23:44:45 +01:00
parent b4a23c005d
commit 7542188592
+1 -1
View File
@@ -74,7 +74,7 @@ dpi=`echo "scale=0;$dpi/1" | bc` # round to the nearest integer
# Identify if page image should be saved as ppm (color) or pgm (gray)
ext="ppm"
opt=""
if [ $colorspaceCurImg == "Gray" ]; then
if [ "$colorspaceCurImg" = "Gray" ]; then
ext="pgm"
opt="-gray"
fi