hooks/post-install/99-pkglint: print correct shlib for unversioned shlibs not in common/shlibs.
This commit is contained in:
parent
321a235bb6
commit
84ee8f9230
1 changed files with 3 additions and 1 deletions
|
@ -69,7 +69,9 @@ hook() {
|
|||
fi
|
||||
done;
|
||||
if [ -z "$found" ]; then
|
||||
msg_warn "${pkgver}: ${libname}.so.${rev} not found in common/shlibs!\n"
|
||||
_myshlib="${libname}.so"
|
||||
[ "${_myshlib}" != "${rev}" ] && _myshlib+=".${rev}"
|
||||
msg_warn "${pkgver}: ${_myshlib} not found in common/shlibs!\n"
|
||||
fi;
|
||||
}
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue