Commit 265ce5bb by Dave Love Committed by Jeff Law

Makefile.in (install-info): Run install-info program in separate loop.

	* Makefile.in (install-info): Run install-info program in separate
	loop.

From-SVN: r20741
parent e4da5f6d
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
......
......@@ -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; \
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; \
else true; fi; \
done
done; \
else true; fi;
-chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
# Install the man pages.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment