diff --git a/common/hooks/post-install/03-strip-and-debug-pkgs.sh b/common/hooks/post-install/03-strip-and-debug-pkgs.sh index 8f17d8c044a..418248837a6 100644 --- a/common/hooks/post-install/03-strip-and-debug-pkgs.sh +++ b/common/hooks/post-install/03-strip-and-debug-pkgs.sh @@ -106,7 +106,7 @@ hook() { fi echo " Stripped library: ${f#$PKGDESTDIR}" _soname=$(${OBJDUMP} -p "$f"|grep SONAME|awk '{print $2}') - if [ -n "${_soname}" ]; then + if [[ "${_soname}" ]] && [[ ${_soname} =~ .so.[0-9] ]]; then echo "${_soname}" >> ${PKGDESTDIR}/.shlib-provides fi attach_debug "$f"