Gentoo Archives: gentoo-commits

From: "Angelo Arrifano (miknix)" <miknix@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gpe.eclass
Date: Fri, 05 Jun 2009 22:53:48
Message-Id: E1MCiIE-0005h8-Im@stork.gentoo.org
1 miknix 09/06/05 22:53:46
2
3 Modified: gpe.eclass
4 Log:
5 Fix sed messing with Makefile timestamps, see bug #272161 .
6
7 Revision Changes Path
8 1.2 eclass/gpe.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gpe.eclass?rev=1.2&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gpe.eclass?rev=1.2&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gpe.eclass?r1=1.1&r2=1.2
13
14 Index: gpe.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gpe.eclass,v
17 retrieving revision 1.1
18 retrieving revision 1.2
19 diff -u -r1.1 -r1.2
20 --- gpe.eclass 28 Feb 2009 14:07:58 -0000 1.1
21 +++ gpe.eclass 5 Jun 2009 22:53:46 -0000 1.2
22 @@ -1,6 +1,6 @@
23 # Copyright 2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gpe.eclass,v 1.1 2009/02/28 14:07:58 miknix Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gpe.eclass,v 1.2 2009/06/05 22:53:46 miknix Exp $
27 #
28 # @ECLASS: gpe.eclass
29 # @MAINTAINER: <gpe@g.o>
30 @@ -66,7 +66,8 @@
31 # Do not call, use gpe_src_unpack() instead.
32 gpe_src_prepare() {
33 # let portage handle stripping.
34 - for file in $(find . -name 'Makefile*') ; do
35 + # sort is needed, see #272161 .
36 + for file in $(find . -name 'Makefile*' | sort) ; do
37 sed -i -e s/'install -s'/'install'/g \
38 -e s/'install -Ds'/'install -D'/g \
39 -e 's/$(INSTALL) -s/$(INSTALL) /g' \