* Makefile.in (install-info): Support installation from outside of

the source directory.  Reported by Mark Harig
        <markh@frazier.landmark.com>.
This commit is contained in:
Eli Zaretskii 2000-06-25 08:12:30 +00:00
parent 6d249963bc
commit cc542d3bd4
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
* Makefile.in (install-info): Support installation from outside of
the source directory. Reported by Mark Harig
<markh@frazier.landmark.com>.
2000-06-20 J.T. Conklin <jtc@redback.com>
* gdb.texinfo: Fix typo, $bpnum is set to last breakpoint number.

View File

@ -118,9 +118,10 @@ diststuff: info
install-info: info
$(SHELL) $(srcdir)/../../mkinstalldirs $(infodir)
(cd $(srcdir); \
for i in *.info* ; do \
$(INSTALL_DATA) $$i $(infodir)/$$i ; \
done
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 \