aboutsummaryrefslogtreecommitdiff
path: root/x11/kdelibs3/files/patch-kdeprint::imagetops
blob: 518e0b981e598ebde18c4eb0945a9536a882a8a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- kdeprint/filters/imagetops.orig	Wed Nov 28 12:25:21 2001
+++ kdeprint/filters/imagetops	Wed Nov 28 12:29:50 2001
@@ -27,11 +27,17 @@
 # check the file mime type, and set the command correspondingly
 cmd=
 magic=`file -bi $FILE`
-if [[ $magic != image/* ]] ; then
-	echo "Not an image"
-	exit 1;
-fi
-case ${magic/image\//} in
+
+case $magic in
+	image/*)
+		;;
+	*)
+		echo "Not an image"
+		exit 1;
+		;;
+esac
+
+case ${magic##image\/} in
 	jpeg)
 		cmd="djpeg -pnm"
 		;;