common/hooks/post-install: remove unneeded messages.

This commit is contained in:
Juan RP 2014-02-12 15:08:35 +01:00
parent d4e4f37c80
commit af8b5befde
4 changed files with 0 additions and 4 deletions

View file

@ -14,7 +14,6 @@ hook() {
if [ "$pkgname" != "texinfo" ]; then if [ "$pkgname" != "texinfo" ]; then
rm -f ${PKGDESTDIR}/usr/share/info/dir rm -f ${PKGDESTDIR}/usr/share/info/dir
fi fi
msg_normal "$pkgver: processing info(1) files...\n"
find ${PKGDESTDIR}/usr/share/info -type f -follow | while read f find ${PKGDESTDIR}/usr/share/info -type f -follow | while read f
do do

View file

@ -8,7 +8,6 @@ hook() {
return 0 return 0
fi fi
msg_normal "$pkgver: processing manual pages...\n"
find ${PKGDESTDIR}/usr/share/man -type f -follow | while read f find ${PKGDESTDIR}/usr/share/man -type f -follow | while read f
do do
j=$(echo "$f"|sed -e "$fpattern") j=$(echo "$f"|sed -e "$fpattern")

View file

@ -2,7 +2,6 @@
hook() { hook() {
if [ -z "$keep_libtool_archives" ]; then if [ -z "$keep_libtool_archives" ]; then
msg_normal "$pkgver: removing libtool archives...\n"
find ${PKGDESTDIR} -type f -name *.la -delete find ${PKGDESTDIR} -type f -name *.la -delete
fi fi
} }

View file

@ -1,6 +1,5 @@
# This hook removes python bytecode files (.py[co]). # This hook removes python bytecode files (.py[co]).
hook() { hook() {
msg_normal "$pkgver: removing python bytecode archives...\n"
find ${PKGDESTDIR} -type f -name *.py[co] -delete find ${PKGDESTDIR} -type f -name *.py[co] -delete
} }