diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2010-05-03 23:21:52 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2010-05-03 23:21:52 +0000 |
commit | e38fa65e7cfd74ae6038e516802ac607f9a7bce6 (patch) | |
tree | d58863ac3b7d1849b32b4bb9e6663e4888bb937a /sys-libs/db/db-4.5.20_p2.ebuild | |
parent | Bug #275652: Install examples with USE=examples. (diff) | |
download | historical-e38fa65e7cfd74ae6038e516802ac607f9a7bce6.tar.gz historical-e38fa65e7cfd74ae6038e516802ac607f9a7bce6.tar.bz2 historical-e38fa65e7cfd74ae6038e516802ac607f9a7bce6.zip |
Bug #240568: Fix bad stripping output in older ebuilds.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'sys-libs/db/db-4.5.20_p2.ebuild')
-rw-r--r-- | sys-libs/db/db-4.5.20_p2.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys-libs/db/db-4.5.20_p2.ebuild b/sys-libs/db/db-4.5.20_p2.ebuild index 0b5d522b6716..7af8aae77068 100644 --- a/sys-libs/db/db-4.5.20_p2.ebuild +++ b/sys-libs/db/db-4.5.20_p2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.5.20_p2.ebuild,v 1.29 2009/09/20 19:52:44 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-4.5.20_p2.ebuild,v 1.30 2010/05/03 23:21:52 robbat2 Exp $ inherit eutils db flag-o-matic java-pkg-opt-2 @@ -107,14 +107,14 @@ src_compile() { --host="${CHOST}" \ ${myconf} "${javaconf}" || die "configure failed" - sed -e "s,\(^STRIP *=\).*,\1\"none\"," Makefile > Makefile.cpy \ + sed -e "s,\(^STRIP *=\).*,\1\"true\"," Makefile > Makefile.cpy \ && mv Makefile.cpy Makefile emake -j1 || die "make failed" } src_install() { - einstall libdir="${D}/usr/$(get_libdir)" STRIP="none" || die + einstall libdir="${D}/usr/$(get_libdir)" STRIP="true" || die db_src_install_usrbinslot |