Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

RE: zsh 4.0.2 released



> 
> I didn't notice this before, but the `make install.html'' does 
> not install the
> zsh.html file. Texi2html generates from zsh.texi the top page 
> zsh.html, and a
> lot of zsh_*.html files. However, only the latter are installed. 
> Since they all
> have links like <a HREF="zsh.html#SEC_Top">Top</a> all these 
> links do not work
> unless the former is also installed. Therefore, Doc/Makefile 
> should be changed
> so that the loop `for file in zsh_*.html' should be replaced by 
> `for file in
> zsh*.html' (underscore omitted). Same comment refers to `make 
> uninstall.html'
> 

Does it help?

Index: Doc/Makefile.in
===================================================================
RCS file: /cvsroot/zsh/zsh/Doc/Makefile.in,v
retrieving revision 1.9
diff -u -r1.9 Makefile.in
--- Doc/Makefile.in     2001/05/31 11:58:40     1.9
+++ Doc/Makefile.in     2001/06/28 13:14:58
@@ -297,14 +297,14 @@
 # install HTML manual
 install.html: html
        ${SHELL} $(sdir_top)/mkinstalldirs $(DESTDIR)$(htmldir)
-       for file in zsh_*.html; do \
+       for file in zsh*.html; do \
            $(INSTALL_DATA) $$file $(DESTDIR)$(htmldir) || exit 1; \
        done
 .PHONY: install.html
 
 # uninstall HTML manual
 uninstall.html:
-       rm -f $(DESTDIR)$(htmldir)/zsh_*.html
+       rm -f $(DESTDIR)$(htmldir)/zsh*.html
 .PHONY: uninstall.html
 
 # ========== DEPENDENCIES FOR CLEANUP ==========



Messages sorted by: Reverse Date, Date, Thread, Author