python-pyrex: Rework DEPENDS updates
[openembedded.git] / recipes / glibc / glibc-2.3.2 / noinfo.patch
blob6aa0e64d96055a4dad62c6fc792084046f0c0a65
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
6 .PHONY: all dvi pdf info html
7 -all: dvi
8 +all:
9 dvi: libc.dvi
10 pdf: libc.pdf
12 @@ -41,7 +41,7 @@
13 TEXI2PDF = texi2dvi --pdf
15 ifneq ($(strip $(MAKEINFO)),:)
16 -all: info
17 +all:
18 info: libc.info dir-add.info
19 endif
21 @@ -176,28 +176,14 @@
22 -rm -f top-menu.texi chapters.texi
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.