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. --- ChangeLog | 5 +++++ Doc/Makefile.in | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 50d0dfc21..d425169db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-09-20 Peter Stephenson + + * Tanu Kaskinen: 33209: Doc/Makefile.in: don't fail + catastrophically when builing zsh.texi if yodl isn't available. + 2014-09-19 Barton E. Schaefer * 33206: Doc/Zsh/mod_computil.yo: fix compdescribe doc 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