common/hooks/post-install: remove unneeded messages.
This commit is contained in:
parent
d4e4f37c80
commit
af8b5befde
|
@ -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
|
||||
|
|
|
@ -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")
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue