# HG changeset patch # User Martin Geisler # Date 2010-10-23 18:10:18 # Node ID 5fbc2c38a98f97f6dbbd2302d2fe36be4ae19977 # Parent 99e8dd56e244e7341b70356c913b198b170ec6c8 doc/Makefile: do not include hg.1.gendoc.txt in MANIFEST It is an intermediate file used to produce the hg.1 and .hg.1.html files and is not useful for people who download the tarball. It will be regenerated automatically by the Makefile if users want to rebuild the documentation. diff --git a/doc/Makefile b/doc/Makefile --- a/doc/Makefile +++ b/doc/Makefile @@ -34,7 +34,7 @@ hg.1.gendoc.txt: $(GENDOC) MANIFEST: man html # tracked files are already in the main MANIFEST $(RM) $@ - for i in $(MAN) $(HTML) hg.1.gendoc.txt; do \ + for i in $(MAN) $(HTML); do \ echo "doc/$$i" >> $@ ; \ done