From f4aae44162e4b91f14e8f2d09f65ccc4e7c66dd7 Mon Sep 17 00:00:00 2001 From: Tanu Kaskinen Date: Sat, 20 Sep 2014 14:43:42 +0300 Subject: 33209: allow dummy zsh.texi if yodl not available. Removes catastrophic make failure so rest of make can finish. --- Doc/Makefile.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Doc/Makefile.in') diff --git a/Doc/Makefile.in b/Doc/Makefile.in index f4ee0d760..41af4a33e 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -119,8 +119,10 @@ texi: $(sdir)/zsh.texi .PHONY: texi $(sdir)/zsh.texi: version.yo - $(YODL) -o $@ -I$(sdir) -w ztexi.yo version.yo zsh.yo; \ - test -f $@ + case '$(YODL)' in :*) touch $@ ;; *) \ + $(YODL) -o $@ -I$(sdir) -w ztexi.yo version.yo zsh.yo; \ + test -f $@ \ + ;; esac info: zsh.info .PHONY: info -- cgit 1.4.1