From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20861 invoked by alias); 2 Dec 2013 16:35:50 -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: 32074 Received: (qmail 2881 invoked from network); 2 Dec 2013 16:35: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=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 From: Bart Schaefer Message-id: <131202083601.ZM3387@torch.brasslantern.com> Date: Mon, 02 Dec 2013 08:36:01 -0800 In-reply-to: <20131202160801.23386d0f@pwslap01u.europe.root.pri> Comments: In reply to Peter Stephenson "Re: 5.0.2-test-2 is available" (Dec 2, 4:08pm) References: <20131201194653.7a98a4a4@pws-pc.ntlworld.com> <20131202151557.1636@binki> <20131202160801.23386d0f@pwslap01u.europe.root.pri> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: "Zsh Hackers' List" Subject: Re: 5.0.2-test-2 is available MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Dec 2, 4:08pm, Peter Stephenson wrote: } } I'm getting with make on Cygwin } } sh: colcrt: command not found Out of curiosity, do you have yodl installed on Cygwin? If not, how are you even getting this far in the build process? zshbuiltins.1 should not exist, so the dependency for help.txt can't be satisfied, and perl should never even be run ...? If you don't have yodl, and zshbuiltins.1 is coming from the doc tarball, then as noted in earlier email help.txt should also be in the doc tarball and needs to be newer than zshbuiltins.1 so that it's not rebuilt. If you do have yodl and are not using the doc tarball, then our previous position has been that developers are responsible for making sure they have all the tools to complete the build from scratch on whatever platform. However, if we want to take the position that failing to rebuild help.txt is inconsequential, then just remove the "false;" at the end of the rule as in the following diff: diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 50e210f..be66862 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -191,7 +191,7 @@ help.txt: zshbuiltins.1 @-rm -f $(sdir)/help.txt $(sdir)/help/* perl $(sdir_top)/Util/helpfiles \ $(sdir)/zshbuiltins.1 $(sdir)/help $(sdir)/help.txt \ - || { rm -f $(sdir)/help.txt $(sdir)/help/*; false; } + || rm -f $(sdir)/help.txt $(sdir)/help/* $(MAN): zmacros.yo zman.yo