X-Original-To: alpine-devel@mail.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id A5B04DCBCF5 for ; Thu, 26 Nov 2015 23:51:14 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [81.4.121.103]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id 14266DC00C0; Thu, 26 Nov 2015 23:51:13 +0000 (UTC) Received: from localhost (ip5f5ac93e.dynamic.kabel-deutschland.de [95.90.201.62]) by lithium.8pit.net (OpenSMTPD) with ESMTPSA id 89183172 TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Fri, 27 Nov 2015 00:51:10 +0100 (CET) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH 2/5] abuild: there is no man page section 9 Date: Fri, 27 Nov 2015 00:50:44 +0100 Message-Id: <1448581847-30376-2-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.6.3 In-Reply-To: <1448581847-30376-1-git-send-email-soeren+git@soeren-tempel.net> References: <1448581847-30376-1-git-send-email-soeren+git@soeren-tempel.net> X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: --- abuild.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/abuild.in b/abuild.in index 697a186..4c45504 100644 --- a/abuild.in +++ b/abuild.in @@ -591,7 +591,7 @@ postcheck() { 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|") + i=$(find "$dir"/usr/share/man -name '*.[0-8]' -type f | sed "s|^$dir|\t|") if [ -n "$i" ]; then error "Found uncompressed man pages:" echo "$i" @@ -1405,7 +1405,7 @@ default_doc() { # compress man pages local previnode= prevname= mandir="$subpkgdir"/usr/share/man [ -d "$mandir" ] && find "$subpkgdir"/usr/share/man \ - -type f \( -name \*.[0-9n] -o -name \*.[0-9][a-z]* \) \ + -type f \( -name \*.[0-8n] -o -name \*.[0-8][a-z]* \) \ -exec stat -c "%i %n" {} \; | sort -n \ | while read inode name; do @@ -1421,7 +1421,7 @@ default_doc() { prevname="$name" done [ -d "$mandir" ] && find "$subpkgdir"/usr/share/man \ - -type l \( -name \*.[0-9n] -o -name \*.[0-9][a-z]* \) \ + -type l \( -name \*.[0-8n] -o -name \*.[0-8][a-z]* \) \ | while read symlink; do ln -s $(readlink $symlink).gz "$symlink".gz -- 2.6.3 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---