]> gcc.gnu.org Git - gcc.git/commitdiff
Makefile.in (install-info): Run install-info program in separate loop.
authorDave Love <d.love@dl.ac.uk>
Fri, 26 Jun 1998 16:38:36 +0000 (16:38 +0000)
committerJeff Law <law@gcc.gnu.org>
Fri, 26 Jun 1998 16:38:36 +0000 (10:38 -0600)
* Makefile.in (install-info): Run install-info program in separate
loop.

From-SVN: r20741

gcc/ChangeLog
gcc/Makefile.in

index fbfaf6f6fbf2e56cf776ea843d934e99befa3168..85e96dd0df4e156e53278cbf9a8b2675786a653a 100644 (file)
@@ -1,3 +1,8 @@
+Fri Jun 26 17:36:42 1998  Dave Love  <d.love@dl.ac.uk>
+
+       * Makefile.in (install-info): Run install-info program in separate
+       loop.
+
 Fri Jun 26 16:03:15 1998  Michael Meissner  <meissner@cygnus.com>
 
        * haifa-sched.c (schedule_block): Add hooks for the machine
index f8b3b7456a8a994ed287e11b9756d23502d8cfc5..a767cce1f52534c518e09de62022a85db507a65d 100644 (file)
@@ -2379,10 +2379,13 @@ install-info: doc installdirs lang.install-info
        for f in cpp.info* gcc.info*; do \
            realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
            $(INSTALL_DATA) $$f $(infodir)/$$realfile; \
-           if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
-              install-info --dir-file=$(infodir)/dir $(infodir)/$$realfile; \
-           else true; fi; \
        done
+       if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
+           for f in cpp.info gcc.info; do \
+               realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
+               install-info --dir-file=$(infodir)/dir $(infodir)/$$realfile; \
+           done; \
+       else true; fi;
        -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
 
 # Install the man pages.
This page took 0.079475 seconds and 5 git commands to generate.