summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-08-29 13:55:49 +0200
committerJim Meyering <meyering@redhat.com>2012-08-30 15:21:59 +0200
commite8c41cf753cca5ed8afbea94cba1543f62fc7557 (patch)
tree1e89e3697e7da023a76a6e5cc69e410199ad41f5 /doc
parent4b12790386d4f79f24a51777d5a16cd30937a9dc (diff)
downloadcoreutils-e8c41cf753cca5ed8afbea94cba1543f62fc7557.tar.xz
build: add extra *.texi files to coreutils_TEXINFOS, not EXTRA_DIST
* doc/Makefile.am (coreutils_TEXINFO): List them here, instead of ... (EXTRA_DIST): ... listing them here. This ensures the rebuild rules will be more faithful. ($(DVIS), $(INFO_DEPS)): No need to depend on $(EXTRA_DIST) now.
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am5
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index dea27564c..9a5071488 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -17,7 +17,7 @@
info_TEXINFOS = coreutils.texi
-EXTRA_DIST = perm.texi parse-datetime.texi constants.texi fdl.texi
+coreutils_TEXINFOS = perm.texi parse-datetime.texi constants.texi fdl.texi
# The following is necessary if the package name is 8 characters or longer.
# If the info documentation would be split into 10 or more separate files,
@@ -40,9 +40,6 @@ constants.texi: $(top_srcdir)/src/tail.c $(top_srcdir)/src/shred.c
MAINTAINERCLEANFILES = constants.texi
-$(DVIS): $(EXTRA_DIST)
-$(INFO_DEPS): $(EXTRA_DIST)
-
# Extended regular expressions to match word starts and ends.
_W = (^|[^A-Za-z0-9_])
W_ = ([^A-Za-z0-9_]|$$)