From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21359 invoked by alias); 20 Sep 2014 11:54:01 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 33209 Received: (qmail 1714 invoked from network); 20 Sep 2014 11:53:44 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-5.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, URIBL_RHS_DOB autolearn=ham version=3.3.2 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.04,559,1406617200"; d="scan'208";a="602616590" From: Tanu Kaskinen To: zsh-workers@zsh.org Subject: [PATCH] Doc/Makefile.in: create a dummy zsh.texi if if yodl isn't available Date: Sat, 20 Sep 2014 14:43:42 +0300 Message-Id: <1411213422-4085-1-git-send-email-tanu.kaskinen@linux.intel.com> X-Mailer: git-send-email 1.9.3 This fixes a build failure when yodl isn't available. --- Doc/Makefile.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Doc/Makefile.in b/Doc/Makefile.in index f4ee0d7..41af4a3 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 -- 1.9.3