mirror of
https://github.com/void-linux/void-packages.git
synced 2025-08-01 18:32:58 +02:00
hooks/shlib-provides: only process .so* files.
This commit is contained in:
parent
30ac2e8dee
commit
607d2aee5b
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ collect_sonames() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# real pkg
|
# real pkg
|
||||||
find ${_destdir} -type f | while read f; do
|
find ${_destdir} -type f -name "*.so*" | while read f; do
|
||||||
_fname=$(basename "$f")
|
_fname=$(basename "$f")
|
||||||
case "$(file -bi "$f")" in
|
case "$(file -bi "$f")" in
|
||||||
application/x-sharedlib*)
|
application/x-sharedlib*)
|
||||||
|
|
Loading…
Add table
Reference in a new issue