diff options
author | Juan RP <xtraeme@gmail.com> | 2014-04-01 13:25:07 +0000 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-04-01 13:25:07 +0000 |
commit | 4859885e58f1060bc8f6f54f8ce076a7c1823f62 (patch) | |
tree | 81e617fa54786147e2c829f038c51673e783c0e7 /common/hooks/post-install/99-pkglint.sh | |
parent | 18c488716489b8d455951446e4e23ff5854fa45f (diff) | |
download | void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.tar void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.tar.gz void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.tar.bz2 void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.tar.lz void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.tar.xz void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.tar.zst void-packages-4859885e58f1060bc8f6f54f8ce076a7c1823f62.zip |
hooks/post-install: pkglint: just warn if shlib is not found in common/shlibs.
Diffstat (limited to 'common/hooks/post-install/99-pkglint.sh')
-rw-r--r-- | common/hooks/post-install/99-pkglint.sh | 2 |
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 4784e7c726e..d3f3b294852 100644 --- a/common/hooks/post-install/99-pkglint.sh +++ b/common/hooks/post-install/99-pkglint.sh @@ -63,7 +63,7 @@ hook() { fi done; if [ -z "$found" ]; then - msg_error "${pkgver}: ${libname}.so.${rev} not found in common/shlibs. Please add it.\n" + msg_warn "${pkgver}: ${libname}.so.${rev} not found in common/shlibs!\n" fi; } done |