From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26261 invoked by alias); 22 Sep 2014 13:41:27 -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: 33216 Received: (qmail 18766 invoked from network); 22 Sep 2014 13:41:15 -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=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, SPF_HELO_PASS autolearn=ham version=3.3.2 X-AuditID: cbfec7f5-b7f776d000003e54-50-5420249b2e3b Date: Mon, 22 Sep 2014 14:31:06 +0100 From: Peter Stephenson To: zsh-workers@zsh.org Subject: Re: [PATCH] configure.ac: expand all paths in the summary Message-id: <20140922143106.28ad9a92@pwslap01u.europe.root.pri> In-reply-to: <1411204287-19741-1-git-send-email-tanu.kaskinen@linux.intel.com> References: <1411204287-19741-1-git-send-email-tanu.kaskinen@linux.intel.com> Organization: Samsung Cambridge Solution Centre X-Mailer: Claws Mail 3.7.9 (GTK+ 2.22.0; i386-redhat-linux-gnu) MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFuplluLIzCtJLcpLzFFi42I5/e/4Nd3ZKgohBid7xSwONj9kcmD0WHXw A1MAYxSXTUpqTmZZapG+XQJXRuuDLywFs9gq/l68zNjA2M3axcjJISFgIjH922IoW0ziwr31 bF2MXBxCAksZJeb8+McE4Sxnkji09ws7SBWLgKrE8U+32UBsNgFDiambZjOC2CIC4hJn155n AbGFBZwker6cBIvzCthLbHh4FKyXU8BP4uaSp2C2kICvRM+1i2Cb+QX0Ja7+/cQEcYW9xMwr Z6B6BSV+TL4HNpNZQEti87YmVghbXmLzmrfMExgFZiEpm4WkbBaSsgWMzKsYRVNLkwuKk9Jz jfSKE3OLS/PS9ZLzczcxQoLw6w7GpcesDjEKcDAq8fD+aJEPEWJNLCuuzD3EKMHBrCTCGySt ECLEm5JYWZValB9fVJqTWnyIkYmDU6qBsSB5Qumujw7XHGd2i2RZMXx5oMynPV1/3WqP6Trv fopHLHY6vG/W2QNqWaFbQwMWlaTwuRgF8d250XxDw76xo3l3aNgDu57bhhOadMK0Jy8v8Mic f+N3eVL+nPxrKh73Jp58Ib999b1fm/OnTpLwq1U59MnuRs87wWc/s+O32xXkLVJ6e3zbWyWW 4oxEQy3mouJEAD8cDNsgAgAA On Sat, 20 Sep 2014 12:11:27 +0300 Tanu Kaskinen wrote: > This fixes a cosmetic issue in the configure summary text. Thanks, I've committed it. Entirely irrelevantly... > eval "zshbin1=${bindir}" > eval "zshbin2=${zshbin1}" > -eval "zshman=${mandir}" > -eval "zshinfo=${infodir}" > -eval "zshfndir=${fndir}" > +eval "zshman1=${mandir}" > +eval "zshman2=${zshman1}" > +eval "zshinfo1=${infodir}" > +eval "zshinfo2=${zshinfo1}" > +eval "zshfndir1=${fndir}" > +eval "zshfndir2=${zshfndir1}" Hmmm... this is where I should really be testing for the value of the site function directory, so I don't need all the funny cases. It's a bit late, but it could stand a bit of moving around. I can't be bothered to revisit it, though. pws