* mmalloc/Makefile.in (install-info): Make sure $(infodir) exists.

Run install-info program on the installed Info files.
	* gdb/doc/Makefile.in (install-info): Run install-info on installed
	Info files.
This commit is contained in:
Eli Zaretskii
2000-05-17 11:45:56 +00:00
parent d80380145f
commit d3229ae3bd
4 changed files with 22 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (install-info): Run install-info on installed Info
files.
Fri May 12 20:18:04 2000 Andrew Cagney <cagney@b1.cygnus.com>
* gdb.texinfo: Add Stan Shebs, et.al. as authors. Mention

View File

@@ -117,6 +117,13 @@ install-info: info
for i in *.info* ; do \
$(INSTALL_DATA) $$i $(infodir)/$$i ; \
done
@if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
list='gdb.info gdbint.info stabs.info'; \
for file in $$list; do \
echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
install-info --info-dir=$(infodir) $(infodir)/$$file || :;\
done; \
else : ; fi
install-html: html
for i in *.html ; do \