From b4b41c0c80d714d40c519ad1d019446209d147f7 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Tue, 4 Jan 2011 16:37:41 -0700 Subject: doc: improve install.texi texinfo markup This partially reverts commit 02fa53b19528cbb849b08b68074dcbc31c5a9715. * doc/install.texi: Don't force @firstparagraphindent on all clients; instead, add it only when building INSTALL. Compress copyright. * Makefile.am (INSTALL): Match gnulib's formatting. Reported by Karl Berry. Signed-off-by: Eric Blake --- Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index b34d97ee..fcd5a169 100644 --- a/Makefile.am +++ b/Makefile.am @@ -41,8 +41,11 @@ pkgdata_DATA = $(srcdir)/INSTALL MAINTAINERCLEANFILES = $(srcdir)/INSTALL $(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi - $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) --plaintext -o $@ \ - $(top_srcdir)/doc/install.texi + echo @firstparagraphindent insert \ + | cat - $(top_srcdir)/doc/install.texi > tmp.texi + $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) \ + --plaintext -o $@ tmp.texi + rm -f tmp.texi endif -- cgit v1.2.1