Changeset 739 for trunk/man/Makefile.am


Ignore:
Timestamp:
Dec 17, 2008, 5:39:47 PM (15 years ago)
Author:
Peter Johansson
Message:

fixes #363. Correct AM_CONDITIONAL. Added a warning when configure is run with --enable-debug and help2man is not found. Also added a warning if a bogus man page is created. As before there is a dist-hook preventing that bogus man page is not distributed, however, now the dist-hook is triggered on the AM_CONDITIONAL rather than checking that if the man page is ok. This implies that help2man is required to create a dist also if the man page does exist.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/man/Makefile.am

    r732 r739  
    3434else
    3535$(srcdir)/svndigest.1:
     36        echo "WARNING: bogus svndigest.1 is created" >&2; \
    3637  echo 'ab help2man is required to generate this page' > $@
    37 endif
    38 
    3938
    4039# Checking that we don't ship a bogus man page, which might be created
     
    4241# where we require Automake 1.11)
    4342dist-hook:
    44   @if grep 'ab help2man is required to generate this page' \
    45   $(srcdir)/svndigest.1 >/dev/null; then \
    46           echo "error: svndigest.1 is bogus" >&2; \
    47           echo "       you need help2man to generate a valid man page" >&2;\
    48           echo "       install help2man, remove svndigest.1 and run 'make'" >&2;\
    49           exit 1; \
    50   fi
     43        echo "ERROR: svndigest.1 is bogus" >&2; \
     44        echo "       you need help2man to generate a valid man page" >&2;\
     45        echo "       install help2man, re-run `configure'," >&2;\
     46        echo "       remove svndigest.1 and run 'make'" >&2;\
     47        exit 1;
     48endif
Note: See TracChangeset for help on using the changeset viewer.