From b31469d0d40ac858687657c72baaafd7a63041d9 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 20 Aug 2013 16:41:25 +0000 Subject: Remove trailing blank lines when generating INSTALL. --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 7d8eccf2e5..119bb26c39 100644 --- a/Makefile +++ b/Makefile @@ -403,8 +403,13 @@ endif INSTALL: manual/install.texi manual/macros.texi \ $(common-objpfx)manual/pkgvers.texi makeinfo --no-validate --plaintext --no-number-sections \ - -I$(common-objpfx)manual $< -o $@ - -chmod a-w $@ + -I$(common-objpfx)manual $< -o $@-tmp + $(AWK) 'NF == 0 { ++n; next } \ + NF != 0 { while (n-- > 0) print ""; n = 0; print }' \ + < $@-tmp > $@-tmp2 + rm -f $@-tmp + -chmod a-w $@-tmp2 + mv -f $@-tmp2 $@ $(common-objpfx)manual/%: FORCE $(MAKE) $(PARALLELMFLAGS) -C manual $@ FORCE: -- cgit 1.4.1