diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2009-10-29 21:17:34 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2009-10-29 21:17:34 +0000 |
commit | bd7352b9ec65529b8b6cd55419eda7183607ce69 (patch) | |
tree | 139b2ce579a87f4dd291cce032046497d8433485 /app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild | |
parent | Fix missing - in find statement. (diff) | |
download | gentoo-2-bd7352b9ec65529b8b6cd55419eda7183607ce69.tar.gz gentoo-2-bd7352b9ec65529b8b6cd55419eda7183607ce69.tar.bz2 gentoo-2-bd7352b9ec65529b8b6cd55419eda7183607ce69.zip |
Fix missing - in find statement.
(Portage version: 2.2_rc46/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild')
-rw-r--r-- | app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild b/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild index 50abd4755b11..1010621cd020 100644 --- a/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild +++ b/app-crypt/seahorse-plugins/seahorse-plugins-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-plugins/seahorse-plugins-2.28.1.ebuild,v 1.1 2009/10/29 21:05:29 eva Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse-plugins/seahorse-plugins-2.28.1.ebuild,v 1.2 2009/10/29 21:17:34 eva Exp $ EAPI="2" @@ -77,7 +77,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" exeinto /etc/X11/xinit/xinitrc.d/ doexe "${FILESDIR}/70-seahorse-agent" || die "doexe failed" |