diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-05 09:34:58 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-05 09:58:20 +0530 |
commit | d136c6dc1ef46900488df20bb842909b73479f74 (patch) | |
tree | 18831e5fdd27447cdcc61590d185602252ba92f5 /Makefile | |
parent | ab07cea8bb9c912e42653338e8ebf4d3b1c72bdc (diff) | |
download | glibc-d136c6dc1ef46900488df20bb842909b73479f74.tar.gz glibc-d136c6dc1ef46900488df20bb842909b73479f74.tar.xz glibc-d136c6dc1ef46900488df20bb842909b73479f74.zip |
BZ #15941: Fix INSTALL file regeneration failure with makeinfo 5.x
I have skipped regenerating the INSTALL file because we want to continue using the 4.x generator for now.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index ccba09a6ad..1998756df7 100644 --- a/Makefile +++ b/Makefile @@ -377,8 +377,8 @@ dist: dist-prepare fi endif -INSTALL: manual/install.texi manual/macros.texi \ - $(common-objpfx)manual/pkgvers.texi +INSTALL: manual/install-plain.texi manual/macros.texi \ + $(common-objpfx)manual/pkgvers.texi manual/install.texi makeinfo --no-validate --plaintext --no-number-sections \ -I$(common-objpfx)manual $< -o $@-tmp $(AWK) 'NF == 0 { ++n; next } \ |