]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - gzip/patches/gzip-1.3.9-addsuffix.patch
80a823de82838ae9c7d32cfd6b4493c1840d8c7c
[people/ms/ipfire-3.x.git] / gzip / patches / gzip-1.3.9-addsuffix.patch
1 --- gzip-1.3.9/zmore.in.pom 2007-01-15 15:31:26.000000000 +0100
2 +++ gzip-1.3.9/zmore.in 2007-01-15 15:34:06.000000000 +0100
3 @@ -70,7 +70,7 @@
4 --v*) exec echo "$version";;
5 esac
6
7 - < "$FILE" || continue
8 + if test -e $FILE || test -e $FILE.gz; then
9 if test $FIRST -eq 0; then
10 echo $n1 "--More--(Next file: $FILE)$n2"
11 stty $cb -echo 2>/dev/null
12 @@ -88,5 +88,7 @@
13 if test -t 1; then
14 FIRST=0
15 fi
16 + else < $FILE
17 + fi
18 done
19 fi