diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-10-29 21:15:39 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-10-29 21:15:39 +0000 |
commit | af2a64bb69283b8ac88e916a114838e85efaf9da (patch) | |
tree | 4867f1d58b29cd683ef0a9add728120430c10278 /app-crypt/seahorse | |
parent | New version for GNOME 2.28. (diff) | |
download | gentoo-2-af2a64bb69283b8ac88e916a114838e85efaf9da.tar.gz gentoo-2-af2a64bb69283b8ac88e916a114838e85efaf9da.tar.bz2 gentoo-2-af2a64bb69283b8ac88e916a114838e85efaf9da.zip |
Fix missing - in find statement.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/seahorse')
-rw-r--r-- | app-crypt/seahorse/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/seahorse/seahorse-2.28.1.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-crypt/seahorse/ChangeLog b/app-crypt/seahorse/ChangeLog index 9557a62b9b30..a653a7819fa9 100644 --- a/app-crypt/seahorse/ChangeLog +++ b/app-crypt/seahorse/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/seahorse # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.121 2009/10/29 21:04:49 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.122 2009/10/29 21:15:39 eva Exp $ + + 29 Oct 2009; Gilles Dartiguelongue <eva@gentoo.org> + seahorse-2.28.1.ebuild: + Fix missing - in find statement. *seahorse-2.28.1 (29 Oct 2009) diff --git a/app-crypt/seahorse/seahorse-2.28.1.ebuild b/app-crypt/seahorse/seahorse-2.28.1.ebuild index d5fcd2524f31..36d3801c274d 100644 --- a/app-crypt/seahorse/seahorse-2.28.1.ebuild +++ b/app-crypt/seahorse/seahorse-2.28.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-2.28.1.ebuild,v 1.1 2009/10/29 21:04:49 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-2.28.1.ebuild,v 1.2 2009/10/29 21:15:39 eva Exp $ EAPI="2" @@ -73,7 +73,7 @@ src_prepare() { src_install() { gnome2_src_install - find "${D}" name "*.la" -delete || die "remove of la files failed" + find "${D}" -name "*.la" -delete || die "remove of la files failed" } pkg_postinst() { |