summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-06-18 11:59:54 +0200
committerJim Meyering <meyering@redhat.com>2010-06-18 11:59:54 +0200
commit0bcb904f52dcdcfaed70f7b131481a68353e36b3 (patch)
tree40158195cbe29e29f9b07a1244e4e6b954e1ef56 /man
parent5787991ce79dd35a099dc4f9aa62f324999e480e (diff)
downloadidutils-0bcb904f52dcdcfaed70f7b131481a68353e36b3.tar.gz
idutils-0bcb904f52dcdcfaed70f7b131481a68353e36b3.tar.bz2
idutils-0bcb904f52dcdcfaed70f7b131481a68353e36b3.zip
tests: avoid "make check" failure with Solaris 10's "fmt"
* man/Makefile.am (check-x-vs-1): Use "fmt -w 1", not "fmt -w1", since the latter fails on Solaris 10 with "fmt: bad width: 0". Reported by Claudio Fontana.
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 2d108ec..14dca9d 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -48,7 +48,7 @@ check-x-vs-1:
PATH=../src$(PATH_SEPARATOR)$$PATH; export PATH; \
t=ls-files.$$$$; \
(cd $(srcdir) && ls -1 *.x) | sed 's/\.x$$//' | $(ASSORT) > $$t;\
- echo $(dist_man1_MANS) | fmt -w1 | sed 's/\.1$$//' | $(ASSORT) \
+ echo $(dist_man1_MANS) | fmt -w 1 | sed 's/\.1$$//' | $(ASSORT) \
| diff -u - $$t || { rm $$t; exit 1; }; \
rm $$t