* Makefile.in (install-info): Support installation from outside of
authorEli Zaretskii <eliz@gnu.org>
Sun, 25 Jun 2000 08:12:30 +0000 (08:12 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 25 Jun 2000 08:12:30 +0000 (08:12 +0000)
        the source directory.  Reported by Mark Harig
        <markh@frazier.landmark.com>.

gdb/doc/ChangeLog
gdb/doc/Makefile.in

index 3a6ae4bcb3d276624c5d8cf9aef58a62349d55a1..d167bf8376df55c00b6d336d46e7f3625ad32703 100644 (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.
index 025c20ed68d179e386e21c764b9af97e8a1f57f4..f4c7af8e6dcbe75aa0436b77deddaa9e99a2f9af 100644 (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 \
This page took 0.036945 seconds and 4 git commands to generate.