Commit ee5b121e by Dave Love Committed by Dave Love

Makefile.in (install-info): Don't use $realfile.

Thu Jul  2 14:13:28 1998  Dave Love  <d.love@dl.ac.uk>
	* Makefile.in (install-info): Don't use $realfile.  Ignore
	possible errors from the install-info program.

From-SVN: r20888
parent 729a2bc6
Thu Jul 2 14:13:28 1998 Dave Love <d.love@dl.ac.uk>
* Makefile.in (install-info): Don't use $realfile. Ignore
possible errors from the install-info program.
Thu Jul 2 01:53:32 1998 Alasdair Baird <alasdair@wildcat.demon.co.uk>
* combine.c (simplify_comparison): Apply SUBREG_REG to SUBREGs.
......
......@@ -2374,17 +2374,15 @@ install-driver: xgcc$(exeext)
# Install the info files.
# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
# to do the install. The sed rule was copied from stmp-int-hdrs.
# to do the install.
install-info: doc installdirs lang.install-info
-rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
for f in cpp.info* gcc.info*; do \
realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
$(INSTALL_DATA) $$f $(infodir)/$$realfile; \
$(INSTALL_DATA) $$f $(infodir)/$$f; \
done
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
-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; \
install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
done; \
else true; fi;
-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