Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/php/files/eblits: src_prepare-v1.eblit
Date: Fri, 28 May 2010 11:32:58
Message-Id: 20100528113255.E61992CF37@corvid.gentoo.org
1 mabi 10/05/28 11:32:55
2
3 Modified: src_prepare-v1.eblit
4 Log:
5 fix find command
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.2 dev-lang/php/files/eblits/src_prepare-v1.eblit
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/files/eblits/src_prepare-v1.eblit?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/files/eblits/src_prepare-v1.eblit?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/php/files/eblits/src_prepare-v1.eblit?r1=1.1&r2=1.2
14
15 Index: src_prepare-v1.eblit
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_prepare-v1.eblit,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- src_prepare-v1.eblit 27 May 2010 23:05:04 -0000 1.1
22 +++ src_prepare-v1.eblit 28 May 2010 11:32:55 -0000 1.2
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2010 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_prepare-v1.eblit,v 1.1 2010/05/27 23:05:04 mabi Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/files/eblits/src_prepare-v1.eblit,v 1.2 2010/05/28 11:32:55 mabi Exp $
28
29 eblit-php-src_prepare() {
30 # USE=sharedmem (session/mod_mm to be exact) tries to mmap() this path
31 @@ -65,7 +65,7 @@
32 if has_version '>=sys-devel/autoconf-2.64' ; then
33 sed -i -r \
34 -e 's:^((m4_)?divert)[(]([0-9]*)[)]:\1(600\3):' \
35 - $(grep -l divert $(find -name '*.m4') configure.in) || die
36 + $(grep -l divert $(find . -name '*.m4') configure.in) || die
37 fi
38 eautoreconf --force -W no-cross
39 }