From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Roger_Pau_Monn=E9?= Subject: Re: [PATCH v4 09/15] autoconf: xen: force a refresh with autoconf Date: Wed, 7 May 2014 18:12:44 +0200 Message-ID: <536A5B7C.5000103@citrix.com> References: <1398820328-15132-1-git-send-email-mcgrof@do-not-panic.com> <1398820328-15132-10-git-send-email-mcgrof@do-not-panic.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta4.messagelabs.com ([85.158.143.247]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1Wi4Sg-0003lB-5L for xen-devel@lists.xenproject.org; Wed, 07 May 2014 16:12:50 +0000 In-Reply-To: <1398820328-15132-10-git-send-email-mcgrof@do-not-panic.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: "Luis R. Rodriguez" , xen-devel@lists.xenproject.org Cc: Keir Fraser , Ian Campbell , Tim Deegan , "Luis R. Rodriguez" , Ian Jackson , Jan Beulich List-Id: xen-devel@lists.xenproject.org On 30/04/14 03:12, Luis R. Rodriguez wrote: > From: "Luis R. Rodriguez" > > With some new functionality introduced we can't keep around the old cache. > > Cc: Ian Campbell > Cc: Ian Jackson > Cc: Jan Beulich > Cc: Keir Fraser > Cc: Tim Deegan > Signed-off-by: Luis R. Rodriguez > --- > autogen.sh | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/autogen.sh b/autogen.sh > index b5c9688..2be8360 100755 > --- a/autogen.sh > +++ b/autogen.sh > @@ -1,12 +1,12 @@ > #!/bin/sh -e > -autoconf > +autoconf -f > ( cd tools > - autoconf > + autoconf -f > autoheader > ) > ( cd stubdom > - autoconf > + autoconf -f > ) > ( cd docs > - autoconf > + autoconf -f > ) Not that is that important, but why do you need to force the regen of all files? I expect autoconf should be able to detect which files need rebuilding.