From: Michael Tremer Date: Sat, 10 Apr 2010 11:13:03 +0000 (+0200) Subject: pakfire: Allow special files in packages. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc1b0b34f2f27ad819fc29c24672a298be2b958a;p=ipfire-3.x.git pakfire: Allow special files in packages. --- diff --git a/tools/compressor b/tools/compressor index 659b28c76..c6b9d4671 100755 --- a/tools/compressor +++ b/tools/compressor @@ -33,7 +33,7 @@ function isDir() { } function isFile() { - [ -f "${1}" ] || [ -h "${1}" ] + [ -f "${1}" ] || [ -h "${1}" ] || [ -b "${1}" ] || [ -c "${1}" ] } function add() {