~ubuntu-branches/ubuntu/edgy/xfsprogs/edgy

« back to all changes in this revision

Viewing changes to m4/manual_format.m4

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2004-07-28 21:11:38 UTC
  • Revision ID: james.westby@ubuntu.com-20040728211138-0v4pdnunnp7na5lm
Tags: 2.6.20-1
* New upstream release.
* Fix xfs_io segfault on non-XFS files.  (closes: #260470)
* Fix packaging botch, deleted files included.  (closes: #260491)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
  ])