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 1B093431FBF for ; Tue, 28 Jan 2014 03:13:26 -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 slIproWt2nqB for ; Tue, 28 Jan 2014 03:13:16 -0800 (PST) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id 7EB15431FBD for ; Tue, 28 Jan 2014 03:13:16 -0800 (PST) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id 9BD52100051; Tue, 28 Jan 2014 13:13:06 +0200 (EET) From: Tomi Ollila To: David Bremner , notmuch@notmuchmail.org Subject: Re: [PATCH v3] build: write VERSION file containing $(VERSION) string In-Reply-To: <87zjmgkgxm.fsf@zancas.localnet> References: <1390858998-9846-1-git-send-email-tomi.ollila@iki.fi> <1390859290-10112-1-git-send-email-tomi.ollila@iki.fi> <87zjmgkgxm.fsf@zancas.localnet> User-Agent: Notmuch/0.17+55~g4397960 (http://notmuchmail.org) Emacs/24.3.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain 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: Tue, 28 Jan 2014 11:13:26 -0000 On Tue, Jan 28 2014, David Bremner wrote: > Tomi Ollila writes: > >> +VERSION:=$(shell gv=`exec git describe --match '[0-9.]*'|sed -e s/_/~/ -e s/-/+/ -e s/-/~/`; test -f VERSION || touch VERSION; read fv < VERSION; test x"$$fv" = x"$$gv" || echo "$$gv" > VERSION; echo "$$gv") > > does this need to be one line long? It's a bit scary. Probably not -- I realized after sending v3 I could have split that (among one other problem...) > >> +# this file may already have been updated. >> +VERSION: version >> + echo $(VERSION) > version > > I'd prefer the build process does not change any version controlled > file. It should be source, or generated, but not both. did you mean to > write to VERSION here? I sure meant to. actually echo $(VERSION) > $@ > > d > Tnx for the review... Tomi