diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-12-02 07:22:46 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-12-02 07:22:46 +0000 |
commit | 3a5111e00b39c231bfa55d56369814ec77ee21be (patch) | |
tree | 9d412593c8635ef6705fe68889a263604f0571e0 /sys-libs/db/db-1.85-r3.ebuild | |
parent | Remove 2.3.1. (diff) | |
download | gentoo-2-3a5111e00b39c231bfa55d56369814ec77ee21be.tar.gz gentoo-2-3a5111e00b39c231bfa55d56369814ec77ee21be.tar.bz2 gentoo-2-3a5111e00b39c231bfa55d56369814ec77ee21be.zip |
Fix bug #114223, bad perms on /usr/include/db1.
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'sys-libs/db/db-1.85-r3.ebuild')
-rw-r--r-- | sys-libs/db/db-1.85-r3.ebuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys-libs/db/db-1.85-r3.ebuild b/sys-libs/db/db-1.85-r3.ebuild index c523954b9f24..cec7a77284d4 100644 --- a/sys-libs/db/db-1.85-r3.ebuild +++ b/sys-libs/db/db-1.85-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-1.85-r3.ebuild,v 1.1 2005/11/08 02:40:54 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-1.85-r3.ebuild,v 1.2 2005/12/02 07:22:46 robbat2 Exp $ inherit eutils toolchain-funcs multilib @@ -23,7 +23,10 @@ src_unpack() { cd "${S}" epatch "${WORKDIR}"/${PF}.patch epatch "${FILESDIR}"/${P}-gentoo-paths.patch - sed -i -e "s:@GENTOO_LIBDIR@:$(get_libdir):" PORT/linux/Makefile || die + sed -i \ + -e "s:@GENTOO_LIBDIR@:$(get_libdir):" \ + -e '/$(INSTALL)/s: -m 0644 -d : -m 0755 -d :g' \ + PORT/linux/Makefile || die } src_compile() { |