diff options
author | Olivier Crête <tester@gentoo.org> | 2004-08-24 01:12:06 +0000 |
---|---|---|
committer | Olivier Crête <tester@gentoo.org> | 2004-08-24 01:12:06 +0000 |
commit | e294f9818fa4092a101be4b10f3afefde9a1565c (patch) | |
tree | 76ef3ccdcc8f0d2680c0bdf70afb83bfac58ec91 /eclass | |
parent | gnuconfig_update in src_unpack; use emake; tidy (Manifest recommit) (diff) | |
download | gentoo-2-e294f9818fa4092a101be4b10f3afefde9a1565c.tar.gz gentoo-2-e294f9818fa4092a101be4b10f3afefde9a1565c.tar.bz2 gentoo-2-e294f9818fa4092a101be4b10f3afefde9a1565c.zip |
fix bug #61375
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/db.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/db.eclass b/eclass/db.eclass index 39e61f509e7c..a3f0a1a42fe2 100644 --- a/eclass/db.eclass +++ b/eclass/db.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.10 2004/08/23 12:38:34 pauldv Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/db.eclass,v 1.11 2004/08/24 01:12:06 tester Exp $ # This is a common location for functions used in the sys-libs/db ebuilds ECLASS=db @@ -86,5 +86,5 @@ db_src_install_usrlibcleanup() { find ${D}/usr/lib -maxdepth 1 -type l -name 'libdb[1._-]*so.[23]' -exec rm \{} \; find ${D}/usr/lib -maxdepth 1 -type l -name 'libdb[1._-]*a' -exec rm \{} \; - rm ${D}/usr/include/db.h ${D}/usr/include/db_185.h + rm -f ${D}/usr/include/db.h ${D}/usr/include/db_185.h } |