From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: zsh-workers-return-43392-ml=inbox.vuxu.org@zsh.org X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, MAILING_LIST_MULTI,RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.1 Received: from primenet.com.au (ns1.primenet.com.au [203.24.36.2]) by inbox.vuxu.org (OpenSMTPD) with ESMTP id f00242a8 for ; Wed, 5 Sep 2018 19:12:19 +0000 (UTC) Received: (qmail 1805 invoked by alias); 5 Sep 2018 19:12:06 -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: List-Unsubscribe: X-Seq: 43392 Received: (qmail 7320 invoked by uid 1010); 5 Sep 2018 19:12:06 -0000 X-Qmail-Scanner-Diagnostics: from wout2-smtp.messagingengine.com by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(64.147.123.25):SA:0(-2.6/5.0):. Processed in 2.007157 secs); 05 Sep 2018 19:12:06 -0000 X-Envelope-From: d.s@daniel.shahaf.name X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= daniel.shahaf.name; h=date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=q1IOAFRUqrzFK8rSIs3ZmeNC/3CSOLwTVYqKVG1grw8=; b=btmA5NmR yELP+FL9D3icWNYSoftA8JOWph5Mur1L+QgPhmQl0K9G37dOWz6r+i9/VWEjjxji sUpKny+eGTKEIbIASKPz5BdmJ/GmKb3wGaTYQxB11LZT7apwI45MiF0IweWp7eLK mMYWhthvEfXb+V/mIXq0zjmPWwivPSDZRvq9XCqffNKNiOgrD/R86DAoPI15LTpg wNZlbyNa6fCzzJdbp6XTzbKhCGcPWDzmWrzPsq67mgFVSZtYVmKBa6AH7nCxzNjb zIb3Az/7uPJTiuKz7N7UyYDd46Jz5MpGmhJsREPA0nDXU7m07YVyEushdN+L/k+z 5KjIi+2iv8QVPw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm3; bh=q1IOAFRUqrzFK8rSIs3ZmeNC/3CSOLwTVYqKVG1grw8=; b=JA34jPWe 5JpiS41BHzrfDi3n3lKGSYCKTZ/G3/PVABo0ZmFas3Z9v4/Ayj46E61ioj9lzi2w nGDsSWePIAgKxd2yaN5N/oQMD2gFqcRrjIKesPyIGN0uePpldg3xZnJDnH00Exxw cPG37I+eKGggzVbMWWCTT8lAY1obvA5SR11TIj7E2vkJcNubQOvQpL/LPVLrgW4E YuuAj5BtFDtUEYUeyjalXKJCtMJMVIPxXKG//IzSUgf8qrSEqWJmOrbOVJ3+KA9U ThFGXkpEyk5FnNlMyDrdyFnxHYL/y0YZC9BKkJOEGBrt9V8W4Q13gDZ9LqrE+fKt I+gb2PlaMCKJ8Q== X-ME-Proxy: X-ME-Sender: From: Daniel Shahaf To: zsh-workers@zsh.org Subject: [PATCH] dist: Generate doc/help/* and doc/help.txt in builddir rather than srcdir. Date: Wed, 5 Sep 2018 19:11:55 +0000 Message-Id: <20180905191155.13819-1-danielsh@tarpaulin.shahaf.local2> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180905101445.47xb2barz2shlvno@tarpaulin.shahaf.local2> References: <20180905101445.47xb2barz2shlvno@tarpaulin.shahaf.local2> Fixes creating tarballs in out-of-tree builds. While here, remove the instruction to build zsh before building a tarball, since that's unneeded. --- Doc/Makefile.in | 7 +++---- Etc/creating-a-release.txt | 5 ----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/Doc/Makefile.in b/Doc/Makefile.in index fded2e825..35011091b 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -201,11 +201,10 @@ runhelp: help.txt .PHONY: runhelp help.txt: zshbuiltins.1 - @-rm -f $(sdir)/help.txt $(sdir)/help/* + @-rm -f $@ help/* perl $(sdir_top)/Util/helpfiles \ - $(sdir)/zshbuiltins.1 $(sdir)/help $(sdir)/help.txt \ - || rm -f $(sdir)/help.txt $(sdir)/help/* - touch $(sdir)/$@ + $(sdir)/zshbuiltins.1 help help.txt \ + || rm -f help.txt help/* $(MAN): zmacros.yo zman.yo diff --git a/Etc/creating-a-release.txt b/Etc/creating-a-release.txt index 80b0dd338..bb7272368 100644 --- a/Etc/creating-a-release.txt +++ b/Etc/creating-a-release.txt @@ -35,17 +35,12 @@ To create a zsh release: git checkout zsh-5.5.1-test-1 git diff HEAD # ensure no local mods Util/preconfig && ./configure ... - make make -C Etc make -C Doc everything make tarxz-doc tarxz-src for i in zsh*.tar.?z ; do gpg -ab -- $i ; done # The tarxz-* targets create both *.tar.gz and *.tar.xz. - # - # They must be run in an in-tree build (where the generated 'configure' - # and the generated 'Makefile' are in the same directory), for now, since - # Doc/help/* need to be included in the src tarball. See workers/43373. - [one time step] Add your key to http://zsh.sf.net/Arc/source.html; see README in the 'web' repository for how to do this. Its URL is: