diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-05-28 11:32:55 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-05-28 11:32:55 +0000 |
commit | 9bf58bcf04b8be038f2a339d8b1abee3204aaa2c (patch) | |
tree | e097ce83f834c61e89a2bd1b574e7bda16601942 /dev-lang | |
parent | arm/x86 stable, bug #316367 (diff) | |
download | gentoo-2-9bf58bcf04b8be038f2a339d8b1abee3204aaa2c.tar.gz gentoo-2-9bf58bcf04b8be038f2a339d8b1abee3204aaa2c.tar.bz2 gentoo-2-9bf58bcf04b8be038f2a339d8b1abee3204aaa2c.zip |
fix find command
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/php/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/php/files/eblits/src_prepare-v1.eblit | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-lang/php/ChangeLog b/dev-lang/php/ChangeLog index 823592a3193d..5e97085f500a 100644 --- a/dev-lang/php/ChangeLog +++ b/dev-lang/php/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/php # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.378 2010/05/27 23:24:17 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/php/ChangeLog,v 1.379 2010/05/28 11:32:55 mabi Exp $ + + 28 May 2010; <mabi@gentoo.org> files/eblits/src_prepare-v1.eblit: + use portable find command (bug #321781) *php-5.3.2 (27 May 2010) diff --git a/dev-lang/php/files/eblits/src_prepare-v1.eblit b/dev-lang/php/files/eblits/src_prepare-v1.eblit index 25987e1424e4..e8d7ae2a3290 100644 --- a/dev-lang/php/files/eblits/src_prepare-v1.eblit +++ b/dev-lang/php/files/eblits/src_prepare-v1.eblit @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $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 $ +# $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 $ eblit-php-src_prepare() { # USE=sharedmem (session/mod_mm to be exact) tries to mmap() this path @@ -65,7 +65,7 @@ eblit-php-src_prepare() { if has_version '>=sys-devel/autoconf-2.64' ; then sed -i -r \ -e 's:^((m4_)?divert)[(]([0-9]*)[)]:\1(600\3):' \ - $(grep -l divert $(find -name '*.m4') configure.in) || die + $(grep -l divert $(find . -name '*.m4') configure.in) || die fi eautoreconf --force -W no-cross } |