pkgconfig.req.files: ignore file type, treat all non-symlinks the same way

Stop relying on file(1) output for obvious reasons (see e.g. ALT#28261),
assume that all non-symlinks in pkgconfig directories are valid input.
This commit is contained in:
Дмитрий Левин 2012-12-22 14:41:22 +00:00
parent bd8eb51d08
commit 5a8fdc10de

View File

@ -7,8 +7,7 @@ while IFS=$'\t' read -r f t; do
*) continue ;;
esac
case "$t" in
*' text'*) echo "$f" ;;
*'symbolic link to '*) ;;
*) echo "${0##*/}: $f: $t" >&2 ;;
*) echo "$f" ;;
esac
done