diff options
author | Alexis Ballier <aballier@gentoo.org> | 2008-11-28 13:18:42 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2008-11-28 13:18:42 +0000 |
commit | da37b868a3029cb44a08da58b15e936d5105c27d (patch) | |
tree | 5a49e71ae823ab4dec5eb0dbe1e908d192fc77e1 /dev-libs/mpfr/mpfr-2.3.2.ebuild | |
parent | Version bump to 1.4.8 (diff) | |
download | historical-da37b868a3029cb44a08da58b15e936d5105c27d.tar.gz historical-da37b868a3029cb44a08da58b15e936d5105c27d.tar.bz2 historical-da37b868a3029cb44a08da58b15e936d5105c27d.zip |
fix find call for bsd find compatibility, bug #236067
Package-Manager: portage-2.2_rc16/cvs/Linux 2.6.27.7 x86_64
Diffstat (limited to 'dev-libs/mpfr/mpfr-2.3.2.ebuild')
-rw-r--r-- | dev-libs/mpfr/mpfr-2.3.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-libs/mpfr/mpfr-2.3.2.ebuild b/dev-libs/mpfr/mpfr-2.3.2.ebuild index 3f981090949e..5956ae1e4b30 100644 --- a/dev-libs/mpfr/mpfr-2.3.2.ebuild +++ b/dev-libs/mpfr/mpfr-2.3.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-2.3.2.ebuild,v 1.1 2008/09/20 18:29:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-2.3.2.ebuild,v 1.2 2008/11/28 13:18:42 aballier Exp $ # NOTE: we cannot depend on autotools here starting with gcc-4.3.x inherit eutils @@ -38,7 +38,7 @@ src_unpack() { die "patch ${i} missing - please report to bugs.gentoo.org" fi done - find -type f -print0 | xargs -0 touch -r configure + find . -type f -print0 | xargs -0 touch -r configure } src_install() { |