<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">If we haven't transformed the program name, use the info files we've
already downloaded instead of letting the build regenerate them.

Index: Doc/Makefile.in
===================================================================
--- Doc/Makefile.in.orig
+++ Doc/Makefile.in
@@ -355,7 +355,11 @@ install.info: texi
 	if ( \
 	    sed '/^@setfilename/s|zsh|$(tzsh)|' \
 		&lt; $(sdir)/zsh.texi &gt; infodir/tzsh.texi &amp;&amp; \
+	    if cmp -s $(sdir)/zsh.texi infodir/tzsh.texi; then \
+	        mv $(sdir)/$(tzsh).info* infodir; \
+	    else \
 	    (cd infodir &amp;&amp; $(MAKEINFO) tzsh.texi) &amp;&amp; \
+	    :; fi &amp;&amp; \
 	    for file in infodir/$(tzsh).info*; do \
 		$(INSTALL_DATA) $$file $(DESTDIR)$(infodir) || exit 1; \
 	    done \
</pre></body></html>