xfs: basic functionality test for shrinking free space in the last AG
[xfstests-dev.git] / m4 / manual_format.m4
1
2 # Find format of installed man pages.
3 # Always gzipped on Debian, but not Redhat pre-7.0.
4 # We don't deal with bzip2'd man pages, which Mandrake uses,
5 # someone will send us a patch sometime hopefully. :-)
6
7 AC_DEFUN([AC_MANUAL_FORMAT],
8   [ have_zipped_manpages=false
9     for d in ${prefix}/share/man ${prefix}/man ; do
10         if test -f $d/man1/man.1.gz
11         then
12             have_zipped_manpages=true
13             break
14         fi
15     done
16     AC_SUBST(have_zipped_manpages)
17   ])