From: Sami Kerola Date: Tue, 4 Aug 2015 20:36:05 +0000 (+0100) Subject: tools: stop checkmans.sh validating libtool builds X-Git-Tag: v2.27-rc2~22^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e93ae8414bb705203f6cd7ee51d11e8b7e0e9c9;p=thirdparty%2Futil-linux.git tools: stop checkmans.sh validating libtool builds The checkmans.sh tried to validate shared libraries, such as ./.libs/libsmartcols.so.1, causing the check output to a have lot of pointless garbage. Signed-off-by: Sami Kerola --- diff --git a/tools/checkmans.sh b/tools/checkmans.sh index 618f8ba887..9a137780ca 100755 --- a/tools/checkmans.sh +++ b/tools/checkmans.sh @@ -70,7 +70,7 @@ remove_repeats() cd $(git rev-parse --show-toplevel) for I in $( - find -path './autom4te.cache' -prune -o -name '*[[:alpha:]].[1-8]' -print + find -path './autom4te.cache' -prune -o -path './.libs' -prune -o -name '*[[:alpha:]].[1-8]' -print ); do MAN_FILE=${I##*/} MAN_LIST[${MAN_FILE%%.[0-9]}]=1