hooks/post-install/99-pkglint: detect sonames with pkgnames containing '+' chars (gtk+).
This commit is contained in:
parent
f6f59dec8b
commit
6bb1602225
|
@ -28,7 +28,8 @@ hook() {
|
||||||
for filename in `cat ${PKGDESTDIR}/shlib-provides`; do
|
for filename in `cat ${PKGDESTDIR}/shlib-provides`; do
|
||||||
rev=${filename#*.so.}
|
rev=${filename#*.so.}
|
||||||
libname=${filename%.so*}
|
libname=${filename%.so*}
|
||||||
grep -E "^${libname}\.so[\.0-9.]*[[:blank:]]+${pkgname}-[^-]+_[0-9]+$" $mapshlibs | { \
|
_pkgname=$(echo "$pkgname"|sed -E 's|\+|\\+|g')
|
||||||
|
grep -E "^${libname}\.so[\.0-9.]*[[:blank:]]+${_pkgname}-[^-]+_[0-9]+$" $mapshlibs | { \
|
||||||
while read conflictFile conflictPkg; do
|
while read conflictFile conflictPkg; do
|
||||||
found=1
|
found=1
|
||||||
conflictRev=${conflictFile#*.so.}
|
conflictRev=${conflictFile#*.so.}
|
||||||
|
|
Loading…
Reference in New Issue