hooks/shlib-provides: fix inverted condition.

This commit is contained in:
Juan RP 2015-02-07 10:04:03 +01:00
parent b4d2995a50
commit 84b56a438f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ collect_sonames() {
hook() {
local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
if [ -z "$shlib_provides" -o -n "$noarch" -o -n "$noshlibprovides" ]; then
if [ -z "$shlib_provides" -a -n "$noarch" -o -n "$noshlibprovides" ]; then
return 0
fi