From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: Re: [PATCH] git-gui: sort entries in tclIndex Date: Wed, 15 Apr 2015 09:22:51 +0200 Message-ID: <20150415072251.GA18595@aepfle.de> References: <1422292043-12711-1-git-send-email-olaf@aepfle.de> <20150210151803.GB8965@aepfle.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 To: git@vger.kernel.org X-From: git-owner@vger.kernel.org Wed Apr 15 09:23:02 2015 Return-path: Envelope-to: gcvg-git-2@plane.gmane.org Received: from vger.kernel.org ([209.132.180.67]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YiHf3-0002kt-Ep for gcvg-git-2@plane.gmane.org; Wed, 15 Apr 2015 09:23:01 +0200 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753391AbbDOHW6 (ORCPT ); Wed, 15 Apr 2015 03:22:58 -0400 Received: from mo4-p00-ob.smtp.rzone.de ([81.169.146.217]:19913 "EHLO mo4-p00-ob.smtp.rzone.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752517AbbDOHW4 (ORCPT ); Wed, 15 Apr 2015 03:22:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1429082572; l=1011; s=domk; d=aepfle.de; h=In-Reply-To:Content-Disposition:Content-Type:MIME-Version: References:Subject:To:From:Date; bh=iqMefStkvrIexVrwiu5UvBXjifAKYbF1/unHD+KiMgw=; b=UQNy1bN5r6GGKI2Eg0/3M8VpDemIDJU3Zffy7noWihrwa5n5TvK8X9Xa7JFipc9Zkk6 bNRQxdfNFJxKlqTWIU45sArOew1vynKr++R28ucSXrEMeioFJ5u+z1TbE7mvfbVmTKDFK mahsZVDIS0mu/5SgNDoVCvxXeSOdFUc/M0E= X-RZG-AUTH: :P2EQZWCpfu+qG7CngxMFH1J+yackYocTD1iAi8x+OWi/zfN1cLnBYfssUYhSFcWlBcVQjS6aD/3SLp2pQhrvaJJzk3kODg== X-RZG-CLASS-ID: mo00 Received: from probook.fritz.box ([2001:a60:10e6:c701:1ec1:deff:feb9:bb48]) by smtp.strato.de (RZmta 37.5 AUTH) with ESMTPSA id i077e1r3F7Mq9ju (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (curve sect571r1 with 571 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate) for ; Wed, 15 Apr 2015 09:22:52 +0200 (CEST) Received: by probook.fritz.box (Postfix, from userid 1000) id 183E2502AE; Wed, 15 Apr 2015 09:22:51 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20150210151803.GB8965@aepfle.de> User-Agent: Mutt/1.5.22.rev6346 (2013-10-29) Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Ping? On Tue, Feb 10, Olaf Hering wrote: > Ping? > > On Mon, Jan 26, Olaf Hering wrote: > > > ALL_LIBFILES uses wildcard, which provides the result in directory > > order. This order depends on the underlying filesystem on the > > buildhost. To get reproducible builds it is required to sort such list > > before using them. > > > > Signed-off-by: Olaf Hering > > --- > > git-gui/Makefile | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/git-gui/Makefile b/git-gui/Makefile > > index cde8b2e..7564a18 100644 > > --- a/git-gui/Makefile > > +++ b/git-gui/Makefile > > @@ -258,7 +258,7 @@ lib/tclIndex: $(ALL_LIBFILES) GIT-GUI-VARS > > rm -f $@ ; \ > > echo '# Autogenerated by git-gui Makefile' >$@ && \ > > echo >>$@ && \ > > - $(foreach p,$(PRELOAD_FILES) $(ALL_LIBFILES),echo '$(subst lib/,,$p)' >>$@ &&) \ > > + $(foreach p,$(PRELOAD_FILES) $(sort $(ALL_LIBFILES)),echo '$(subst lib/,,$p)' >>$@ &&) \ > > echo >>$@ ; \ > > fi > >