Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id AD52142D2B1 for ; Wed, 12 Jan 2011 09:58:19 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GAdVrETeOfnQ for ; Wed, 12 Jan 2011 09:58:19 -0800 (PST) Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) by olra.theworths.org (Postfix) with ESMTP id 1718E42D2A9 for ; Wed, 12 Jan 2011 09:58:19 -0800 (PST) Received: from localhost (unknown [192.168.200.4]) by max.feld.cvut.cz (Postfix) with ESMTP id 6D5F719F3328; Wed, 12 Jan 2011 18:58:18 +0100 (CET) X-Virus-Scanned: IMAP AMAVIS Received: from max.feld.cvut.cz ([192.168.200.1]) by localhost (styx.feld.cvut.cz [192.168.200.4]) (amavisd-new, port 10044) with ESMTP id Ck0bN8jG8b3X; Wed, 12 Jan 2011 18:58:17 +0100 (CET) Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) by max.feld.cvut.cz (Postfix) with ESMTP id EB65E19F3326; Wed, 12 Jan 2011 18:58:16 +0100 (CET) Received: from steelpick.2x.cz (note-sojka.felk.cvut.cz [147.32.86.30]) (Authenticated sender: sojkam1) by imap.feld.cvut.cz (Postfix) with ESMTPSA id AD5BB15C03D; Wed, 12 Jan 2011 18:58:16 +0100 (CET) Received: from wsh by steelpick.2x.cz with local (Exim 4.72) (envelope-from ) id 1Pd4xc-00029E-Fe; Wed, 12 Jan 2011 18:58:16 +0100 From: Michal Sojka To: Thomas Schwinge , notmuch@notmuchmail.org Subject: Re: [PATCH] Have to configure and build inside the source directory. In-Reply-To: <1294747284-18791-1-git-send-email-thomas@schwinge.name> References: <1294747284-18791-1-git-send-email-thomas@schwinge.name> User-Agent: Notmuch/0.5-38-g923b170 (http://notmuchmail.org) Emacs/23.2.1 (x86_64-pc-linux-gnu) Date: Wed, 12 Jan 2011 18:58:16 +0100 Message-ID: <87lj2q3sxz.fsf@steelpick.2x.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Thomas Schwinge X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2011 17:58:19 -0000 On Tue, 11 Jan 2011, Thomas Schwinge wrote: > From: Thomas Schwinge > > Signed-off-by: Thomas Schwinge > > --- > configure | 11 +++++++++++ > 1 files changed, 11 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index c58dd0f..b5e446c 100755 > --- a/configure > +++ b/configure > @@ -188,6 +188,17 @@ developers. Then, please email those details to the Notmuch list > (notmuch@notmuchmail.org) so that we can hopefully make future > versions of notmuch easier for you to use. > > +EOF > + > +if ! { : < configure; } 2> /dev/null; then I think that "if ! test -f configure; then" be more readable. -Michal