diff --git a/common/hooks/post-install/00-compress-info-files.sh b/common/hooks/post-install/00-compress-info-files.sh index f6ff72d5b6d..f76e6eebb14 100644 --- a/common/hooks/post-install/00-compress-info-files.sh +++ b/common/hooks/post-install/00-compress-info-files.sh @@ -14,7 +14,6 @@ hook() { if [ "$pkgname" != "texinfo" ]; then rm -f ${PKGDESTDIR}/usr/share/info/dir fi - msg_normal "$pkgver: processing info(1) files...\n" find ${PKGDESTDIR}/usr/share/info -type f -follow | while read f do diff --git a/common/hooks/post-install/00-compress-manpages.sh b/common/hooks/post-install/00-compress-manpages.sh index afb7c19451d..a346a6047e9 100644 --- a/common/hooks/post-install/00-compress-manpages.sh +++ b/common/hooks/post-install/00-compress-manpages.sh @@ -8,7 +8,6 @@ hook() { return 0 fi - msg_normal "$pkgver: processing manual pages...\n" find ${PKGDESTDIR}/usr/share/man -type f -follow | while read f do j=$(echo "$f"|sed -e "$fpattern") diff --git a/common/hooks/post-install/02-remove-libtool-archives.sh b/common/hooks/post-install/02-remove-libtool-archives.sh index 00b1bbc829c..099a18fddbe 100644 --- a/common/hooks/post-install/02-remove-libtool-archives.sh +++ b/common/hooks/post-install/02-remove-libtool-archives.sh @@ -2,7 +2,6 @@ hook() { if [ -z "$keep_libtool_archives" ]; then - msg_normal "$pkgver: removing libtool archives...\n" find ${PKGDESTDIR} -type f -name *.la -delete fi } diff --git a/common/hooks/post-install/02-remove-python-bytecode-files.sh b/common/hooks/post-install/02-remove-python-bytecode-files.sh index 5cda9424859..0250715fdde 100644 --- a/common/hooks/post-install/02-remove-python-bytecode-files.sh +++ b/common/hooks/post-install/02-remove-python-bytecode-files.sh @@ -1,6 +1,5 @@ # This hook removes python bytecode files (.py[co]). hook() { - msg_normal "$pkgver: removing python bytecode archives...\n" find ${PKGDESTDIR} -type f -name *.py[co] -delete }