diff options
author | Dan McGee <dan@archlinux.org> | 2008-01-10 01:32:27 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-10 01:33:12 +0100 |
commit | b1a231427b1335af2ef7c23796525f5e17441f14 (patch) | |
tree | 5648e84ba37f11614cfb6c1b53669856f69de2cd /scripts | |
parent | 47761d5aec3f27fcbb4acc7d0f4f1881cd0c0e6a (diff) | |
download | pacman-b1a231427b1335af2ef7c23796525f5e17441f14.tar.gz pacman-b1a231427b1335af2ef7c23796525f5e17441f14.tar.xz |
makepkg: Ensure we include all manpage directories in compression line
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/makepkg.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 77d5b6a6..45b625d4 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -714,7 +714,7 @@ tidy_install() { msg2 "$(gettext "Compressing man pages...")" local manpage mandirs ext file link hardlinks hl - mandirs="usr/man usr/local/man usr/share/man opt/*/man" + mandirs="usr/man usr/share/man usr/local/man usr/local/share/man opt/*/man" find ${mandirs} -type f 2>/dev/null | while read manpage ; do # check file still exists (potentially compressed with hard link) if [ -f ${manpage} ]; then |