Commit f8c86b58 by Gerald Pfeifer Committed by Jeff Law

Makefile.in (install-info): Only try to update the info directory file if it…

Makefile.in (install-info): Only try to update the info directory file if it exists in the first place.

8
        * Makefile.in (install-info): Only try to update the info
        directory file if it exists in the first place.

From-SVN: r21383
parent b0a766e8
......@@ -2388,9 +2388,11 @@ install-info: doc installdirs lang.install-info
$(INSTALL_DATA) $$f $(infodir)/$$f; \
done
-if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
if [ -f $(infodir)/dir ] ; then \
for f in cpp.info gcc.info; do \
install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
done; \
else true; fi; \
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