diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-02-25 01:53:42 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-02-25 01:53:42 +0000 |
commit | 2791592ed1d46667b250de78d1e613483e3d7677 (patch) | |
tree | 94cb15983993ebdcef6bba63b8c53727f2726466 /sys-libs | |
parent | small fix (diff) | |
download | gentoo-2-2791592ed1d46667b250de78d1e613483e3d7677.tar.gz gentoo-2-2791592ed1d46667b250de78d1e613483e3d7677.tar.bz2 gentoo-2-2791592ed1d46667b250de78d1e613483e3d7677.zip |
fix for userpriv
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/db/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/db/db-3.2.9-r2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-libs/db/ChangeLog b/sys-libs/db/ChangeLog index cf379750519d..14e8fa19b6d7 100644 --- a/sys-libs/db/ChangeLog +++ b/sys-libs/db/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for sys-libs/db # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.21 2003/02/23 22:16:16 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.22 2003/02/25 01:53:42 lostlogic Exp $ *db-3.2.9-r2 (23 Feb 2003) + 24 Feb 2003; Brandon Low <lostlogic@gentoo.org> db-3.2.9-r2.ebuild : + Fix for userpriv mode + 23 Feb 2003; Martin Schlemmer <azarah@gentoo.org> : Fix build to link libdb*.so to dependency libs .. for instance when building with NPTL we need to link to libpthread. diff --git a/sys-libs/db/db-3.2.9-r2.ebuild b/sys-libs/db/db-3.2.9-r2.ebuild index efca48e79696..a7a47e3b75ff 100644 --- a/sys-libs/db/db-3.2.9-r2.ebuild +++ b/sys-libs/db/db-3.2.9-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-3.2.9-r2.ebuild,v 1.1 2003/02/23 22:16:16 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-3.2.9-r2.ebuild,v 1.2 2003/02/25 01:53:42 lostlogic Exp $ IUSE="" @@ -41,10 +41,10 @@ src_unpack() { # We should get dump185 to link against system db1 .. # <azarah@gentoo.org> (23 Feb 2003) - cp ${S}/dist/Makefile.in ${S}/dist/Makefile.in.orig + mv ${S}/dist/Makefile.in ${S}/dist/Makefile.in.orig sed -e 's:DB185INC=:DB185INC= -I/usr/include/db1:' \ -e 's:DB185LIB=:DB185LIB= -ldb1:' \ - ${S}/dist/Makefile.in.orig > ${S}/dist/Makefile.in + ${S}/dist/Makefile.in.orig > ${S}/dist/Makefile.in || die "Failed to sed" # Fix invalid .la files cd ${WORKDIR}/${P}/dist |