Remove trailing blank lines when generating INSTALL.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 20 Aug 2013 16:41:25 +0000 (16:41 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 20 Aug 2013 16:41:25 +0000 (16:41 +0000)
ChangeLog
Makefile

index 18fd09a..0880ef7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-08-20  Joseph Myers  <joseph@codesourcery.com>
+           Roland McGrath  <roland@hack.frob.com>
+
+       * Makefile (INSTALL): Remove trailing blank lines from output of
+       makeinfo.
+
 2013-08-20  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
 
        * sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
index 7d8eccf..119bb26 100644 (file)
--- 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: