99-pkglint.sh: avoid useless use of cat
This commit is contained in:
parent
8254bfd6b3
commit
68733fc673
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ hook() {
|
|||
return 0
|
||||
fi
|
||||
|
||||
for filename in $(cat ${PKGDESTDIR}/shlib-provides); do
|
||||
for filename in $(<${PKGDESTDIR}/shlib-provides); do
|
||||
rev=${filename#*.so.}
|
||||
libname=${filename%.so*}
|
||||
_shlib=$(echo "$libname"|sed -E 's|\+|\\+|g')
|
||||
|
|
Loading…
Reference in a new issue