about summary refs log tree commit diff
path: root/Doc/Makefile.in
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2005-04-24 18:38:01 +0000
committerBart Schaefer <barts@users.sourceforge.net>2005-04-24 18:38:01 +0000
commit337a2e3bfdc5fc6e8d116442cdd939b2df85f90e (patch)
tree02d26c8d96c460bebd923fbd6fb21e09f3309d54 /Doc/Makefile.in
parentd373eb8f1e27cbdcde2130c9b473bb8ca45529e6 (diff)
downloadzsh-337a2e3bfdc5fc6e8d116442cdd939b2df85f90e.tar.gz
zsh-337a2e3bfdc5fc6e8d116442cdd939b2df85f90e.tar.xz
zsh-337a2e3bfdc5fc6e8d116442cdd939b2df85f90e.zip
Minor tweak to _generic plus doc fixes for info interpretation of hyphens.
Diffstat (limited to 'Doc/Makefile.in')
-rw-r--r--Doc/Makefile.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in
index d26e5a863..4223c8625 100644
--- a/Doc/Makefile.in
+++ b/Doc/Makefile.in
@@ -110,11 +110,12 @@ zsh.info: $(sdir)/zsh.texi
 	$(MAKEINFO) $(sdir)/zsh.texi
 
 .yo.1:
-	case $@ in \
+	@case $@ in \
 	  */*) target=$@ ;; \
 	  *) target=$(sdir)/$@ ;; \
 	esac; \
 	case '$(YODL)' in :*) ;; *) \
+	    echo $(YODL) -o $$target -I$(sdir) -w zman.yo version.yo $< ; \
 	    $(YODL) -I$(sdir) -w zman.yo version.yo $< | sed -e '1s/\\-/-/g' -e '/^\.'\''/d' > $$target \
 	;; esac; \
 	test -f $$target
@@ -141,11 +142,12 @@ zsh_toc.html: $(sdir)/zsh.texi
 	$(TEXI2HTML) $(sdir)/zsh.texi
 
 zshall.1: zsh.yo
-	case $@ in \
+	@case $@ in \
 	  */*) target=$@ ;; \
 	  *) target=$(sdir)/$@ ;; \
 	esac; \
 	case '$(YODL)' in :*) ;; *) \
+	    echo $(YODL) -o $$target -I$(sdir) -DZSHALL -w zman.yo version.yo zsh.yo; \
 	    $(YODL) -I$(sdir) -DZSHALL -w zman.yo version.yo zsh.yo | sed -e '1s/\\-/-/g' -e '/^\.'\''/d' > $$target \
 	;; esac; \
 	test -f $$target