mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
Remove trailing blank lines when generating INSTALL.
This commit is contained in:
parent
4e39af6eca
commit
b31469d0d4
@ -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>
|
2013-08-20 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
|
* sysdeps/unix/sysv/linux/s390/sys/procfs.h (struct elf_prstatus):
|
||||||
|
9
Makefile
9
Makefile
@ -403,8 +403,13 @@ endif
|
|||||||
INSTALL: manual/install.texi manual/macros.texi \
|
INSTALL: manual/install.texi manual/macros.texi \
|
||||||
$(common-objpfx)manual/pkgvers.texi
|
$(common-objpfx)manual/pkgvers.texi
|
||||||
makeinfo --no-validate --plaintext --no-number-sections \
|
makeinfo --no-validate --plaintext --no-number-sections \
|
||||||
-I$(common-objpfx)manual $< -o $@
|
-I$(common-objpfx)manual $< -o $@-tmp
|
||||||
-chmod a-w $@
|
$(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
|
$(common-objpfx)manual/%: FORCE
|
||||||
$(MAKE) $(PARALLELMFLAGS) -C manual $@
|
$(MAKE) $(PARALLELMFLAGS) -C manual $@
|
||||||
FORCE:
|
FORCE:
|
||||||
|
Loading…
Reference in New Issue
Block a user