Commit 824d9076 by Dave Love Committed by Jeff Law

Makefile.in (install-info): Use install-info program if available, per GNU standard.

	* Makefile.in (install-info): Use install-info program if
	available, per GNU standard.

From-SVN: r20645
parent 2086b675
Sun Jun 21 17:05:34 1998 Dave Love <d.love@dl.ac.uk>
* Makefile.in (install-info): Use install-info program if
available, per GNU standard.
Sun Jun 21 18:56:44 1998 Jeffrey A Law (law@cygnus.com) Sun Jun 21 18:56:44 1998 Jeffrey A Law (law@cygnus.com)
* haifa-sched.c (debug_ready_list): Make static. * haifa-sched.c (debug_ready_list): Make static.
......
...@@ -2365,6 +2365,9 @@ install-info: doc installdirs lang.install-info ...@@ -2365,6 +2365,9 @@ install-info: doc installdirs lang.install-info
for f in cpp.info* gcc.info*; do \ for f in cpp.info* gcc.info*; do \
realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
$(INSTALL_DATA) $$f $(infodir)/$$realfile; \ $(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 done
-chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info* -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
......
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