diff options
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -651,10 +651,10 @@ postcheck() { warning "Found /usr/share/doc but package name doesn't end with -doc" fi # look for /usr/share/man - if [ -e "$dir"/usr/share/man ] \ - && ! is_doc_pkg; then - warning "Found /usr/share/man but package name doesn't end with -doc" - + if [ -e "$dir"/usr/share/man ]; then + if ! is_doc_pkg; then + warning "Found /usr/share/man but package name doesn't end with -doc" + fi # check for uncompressed man pages i=$(find "$dir"/usr/share/man -name '*.[0-9]' -type f | sed "s|^$dir|\t|") if [ -n "$i" ]; then |