diff options
author | Jim Meyering <meyering@redhat.com> | 2009-01-27 19:42:00 +0100 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-01-27 20:20:07 +0100 |
commit | ddf56e0440d385dd4d3ffcb37a5bba869722d696 (patch) | |
tree | e2dc0d3d0318e44d5a7b14f12086f81afe30be34 | |
parent | 2fbee63cc9088cfc3010cefe61c831016eaea2d5 (diff) | |
download | coreutils-ddf56e0440d385dd4d3ffcb37a5bba869722d696.tar.xz |
doc: ensure that emit_bug_reporting_address changes propagate to *.1
* man/Makefile.am ($(MAN)): Depend on system.h.
-rw-r--r-- | man/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 415eb828f..2b2805232 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,6 +1,6 @@ # Make coreutils man pages. -*-Makefile-*- -# Copyright (C) 2002-2008 Free Software Foundation, Inc. +# Copyright (C) 2002-2009 Free Software Foundation, Inc. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -132,6 +132,10 @@ who.1: $(common_dep) $(srcdir)/who.x ../src/who.c whoami.1: $(common_dep) $(srcdir)/whoami.x ../src/whoami.c yes.1: $(common_dep) $(srcdir)/yes.x ../src/yes.c +# This is required so that changes to e.g., emit_bug_reporting_address +# provoke regeneration of all $(MAN) files. +$(MAN): $(top_srcdir)/src/system.h + SUFFIXES = .x .1 # Ensure that help2man runs the ../src/ginstall binary as |