summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSami Kerola2015-08-04 22:36:05 +0200
committerSami Kerola2015-08-07 22:34:42 +0200
commit6e93ae8414bb705203f6cd7ee51d11e8b7e0e9c9 (patch)
treec8a0fbd8b7ed2ae407fb9575c0c8cf85ede21155 /tools
parentlibmount: fix typo in mnt_optstr_prepend_option() (diff)
downloadkernel-qcow2-util-linux-6e93ae8414bb705203f6cd7ee51d11e8b7e0e9c9.tar.gz
kernel-qcow2-util-linux-6e93ae8414bb705203f6cd7ee51d11e8b7e0e9c9.tar.xz
kernel-qcow2-util-linux-6e93ae8414bb705203f6cd7ee51d11e8b7e0e9c9.zip
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 <kerolasa@iki.fi>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/checkmans.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/checkmans.sh b/tools/checkmans.sh
index 618f8ba88..9a137780c 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