version 1.4 | | version 1.5 |
---|
| | |
fi | | fi |
| | |
| | |
if eval test -n "$GZIP" -a -z "$GUNZIP" ; then | | if test -n "$GZIP" -a -z "$GUNZIP" ; then |
echo "Found gzip, but not gunzip - setting GUNZIP to gzip -c"; | | echo "Found gzip, but not gunzip - setting GUNZIP to gzip -c"; |
GUNZIP="$GZIP -c" | | GUNZIP="$GZIP -c" |
fi; | | fi; |
| | |
BUNZIP="$BZIP -c" | | BUNZIP="$BZIP -c" |
fi; | | fi; |
| | |
if test -z "$COMPRESS" -a -z "$GZIP" -a -z "$BZIP2" ; then | | if test -z "$COMPRESS" -a -z "$GZIP" -a -z "$BZIP" ; then |
echo "Unable to find either compress, bzip2, or gzip - hope you don't plan on compressing"; | | echo "Unable to find either compress, bzip2, or gzip - hope you don't plan on compressing"; |
echo "any files."; | | echo "any files."; |
fi; | | fi; |