aboutsummaryrefslogtreecommitdiff
path: root/common/hooks/post-install/99-pkglint.sh
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-12-10 08:32:28 +0000
committerJuan RP <xtraeme@gmail.com>2014-12-10 08:32:28 +0000
commitcc6b3134b864a283e20a70929e535013f1a701a1 (patch)
tree44a2ff683d26b15ef99f57421384ed72784be73d /common/hooks/post-install/99-pkglint.sh
parent91e58c6ae266c64713ee3ef31d27fda19be44359 (diff)
downloadvoid-packages-cc6b3134b864a283e20a70929e535013f1a701a1.tar
void-packages-cc6b3134b864a283e20a70929e535013f1a701a1.tar.gz
void-packages-cc6b3134b864a283e20a70929e535013f1a701a1.tar.bz2
void-packages-cc6b3134b864a283e20a70929e535013f1a701a1.tar.lz
void-packages-cc6b3134b864a283e20a70929e535013f1a701a1.tar.xz
void-packages-cc6b3134b864a283e20a70929e535013f1a701a1.tar.zst
void-packages-cc6b3134b864a283e20a70929e535013f1a701a1.zip
hooks/pkglint: use xbps-query -Rs to check for shlib-requires in repos.
Diffstat (limited to 'common/hooks/post-install/99-pkglint.sh')
-rw-r--r--common/hooks/post-install/99-pkglint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hooks/post-install/99-pkglint.sh b/common/hooks/post-install/99-pkglint.sh
index b2993d00971..582686828d5 100644
--- a/common/hooks/post-install/99-pkglint.sh
+++ b/common/hooks/post-install/99-pkglint.sh
@@ -51,7 +51,7 @@ hook() {
msg_red "${pkgver}: SONAME bump detected: ${libname}.so.${conflictRev} -> ${libname}.so.${rev}\n"
msg_red "${pkgver}: please update common/shlibs with this line: \"${libname}.so.${rev} ${pkgver}\"\n"
msg_red "${pkgver}: all reverse dependencies should also be revbumped to be rebuilt against ${libname}.so.${rev}:\n"
- _revdeps=$($XBPS_QUERY_XCMD -s ${libname}.so -p shlib-requires|awk '{print $1}')
+ _revdeps=$($XBPS_QUERY_XCMD -Rs ${libname}.so -p shlib-requires|awk '{print $1}')
for x in ${_revdeps}; do
msg_red " ${x%:}\n"
done