11-pkglint-elf-in-usrshare: use file --no-pad so we don't have to strip it
This commit is contained in:
parent
ad9e2b1b70
commit
d36120c73d
|
@ -24,8 +24,7 @@ hook() {
|
||||||
|
|
||||||
# Find all binaries in /usr/share and add them to the pool
|
# Find all binaries in /usr/share and add them to the pool
|
||||||
while read -r f; do
|
while read -r f; do
|
||||||
mime="${f##*:}"
|
mime="${f##*: }"
|
||||||
mime="${mime// /}"
|
|
||||||
file="${f%:*}"
|
file="${f%:*}"
|
||||||
file="${file#${PKGDESTDIR}}"
|
file="${file#${PKGDESTDIR}}"
|
||||||
case "${mime}" in
|
case "${mime}" in
|
||||||
|
@ -37,7 +36,7 @@ hook() {
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done < <(find $PKGDESTDIR/usr/share $prune_expr -type f | file --mime-type --files-from -)
|
done < <(find $PKGDESTDIR/usr/share $prune_expr -type f | file --no-pad --mime-type --files-from -)
|
||||||
|
|
||||||
# Check passed if no packages in pool
|
# Check passed if no packages in pool
|
||||||
if [ -z "$matches" ]; then
|
if [ -z "$matches" ]; then
|
||||||
|
|
Loading…
Reference in New Issue