summaryrefslogtreecommitdiffstats
path: root/meta/packages/glibc/glibc-cvs/noinfo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/packages/glibc/glibc-cvs/noinfo.patch')
-rw-r--r--meta/packages/glibc/glibc-cvs/noinfo.patch52
1 files changed, 52 insertions, 0 deletions
diff --git a/meta/packages/glibc/glibc-cvs/noinfo.patch b/meta/packages/glibc/glibc-cvs/noinfo.patch
new file mode 100644
index 0000000000..6aa0e64d96
--- /dev/null
+++ b/meta/packages/glibc/glibc-cvs/noinfo.patch
@@ -0,0 +1,52 @@
1--- glibc-2.3.2/manual/Makefile~noinfo
2+++ glibc-2.3.2/manual/Makefile
3@@ -25,7 +25,7 @@
4 INSTALL_INFO = install-info
5
6 .PHONY: all dvi pdf info html
7-all: dvi
8+all:
9 dvi: libc.dvi
10 pdf: libc.pdf
11
12@@ -41,7 +41,7 @@
13 TEXI2PDF = texi2dvi --pdf
14
15 ifneq ($(strip $(MAKEINFO)),:)
16-all: info
17+all:
18 info: libc.info dir-add.info
19 endif
20
21@@ -176,28 +176,14 @@
22 -rm -f top-menu.texi chapters.texi
23
24 .PHONY: install subdir_install installdirs install-data
25-install-data subdir_install: install
26+install-data subdir_install:
27 ifneq ($(strip $(MAKEINFO)),:)
28 # There are two variants of install-info out there. The GNU version
29 # knows about the INFO-DIR-SECTION tag, the Debian version doesn't.
30 ifneq ($(OLD_DEBIAN_INSTALL_INFO),yes)
31-install: $(inst_infodir)/libc.info dir-add.info
32- @if $(SHELL) -c '$(INSTALL_INFO) --version' >/dev/null 2>&1; then \
33- test -f $(inst_infodir)/dir || $(INSTALL_DATA) dir $(inst_infodir);\
34- $(INSTALL_INFO) --info-dir=$(inst_infodir) $(inst_infodir)/libc.info;\
35- $(INSTALL_INFO) --info-dir=$(inst_infodir) dir-add.info;\
36- else : ; fi
37+install:
38 else
39-install: $(inst_infodir)/libc.info dir-add.info
40- @if $(SHELL) -c '$(INSTALL_INFO) --version' >/dev/null 2>&1; then \
41- test -f $(inst_infodir)/dir || $(INSTALL_DATA) dir $(inst_infodir);\
42- $(INSTALL_INFO) --info-dir=$(inst_infodir) \
43- --section '^GNU Libraries:' 'GNU Libraries:' \
44- $(inst_infodir)/libc.info;\
45- $(INSTALL_INFO) --info-dir=$(inst_infodir) \
46- --section '^GNU C Library functions:' 'GNU C Library functions:' \
47- dir-add.info;\
48- else : ; fi
49+install:
50 endif
51 endif
52 # Catchall implicit rule for other installation targets from the parent.