diff options
author | Torsten Veller <tove@gentoo.org> | 2007-10-25 07:03:32 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2007-10-25 07:03:32 +0000 |
commit | 177534d9f33e89c043619d2ba22061c4e3eef1ae (patch) | |
tree | 978090360eac64454353b7ace0e157ae89c297f4 /sys-libs | |
parent | keyworded ~x86, bug 195815 (diff) | |
download | gentoo-2-177534d9f33e89c043619d2ba22061c4e3eef1ae.tar.gz gentoo-2-177534d9f33e89c043619d2ba22061c4e3eef1ae.tar.bz2 gentoo-2-177534d9f33e89c043619d2ba22061c4e3eef1ae.zip |
Added a missing quote (#196944)
(Portage version: 2.1.3.16)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/db/ChangeLog | 5 | ||||
-rw-r--r-- | sys-libs/db/db-3.2.9-r11.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys-libs/db/ChangeLog b/sys-libs/db/ChangeLog index 0c6c6dddf8c0..78cc66628b5b 100644 --- a/sys-libs/db/ChangeLog +++ b/sys-libs/db/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-libs/db # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.227 2007/10/24 07:07:55 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/ChangeLog,v 1.228 2007/10/25 07:03:32 tove Exp $ + + 25 Oct 2007; Torsten Veller <tove@gentoo.org> db-3.2.9-r11.ebuild: + Added a missing quote (#196944) 24 Oct 2007; William L. Thomson Jr. <wltjr@gentoo.org> db-1.85-r1.ebuild, -db-3.2.9-r10.ebuild, db-3.2.9-r11.ebuild, db-4.4.20_p4.ebuild, diff --git a/sys-libs/db/db-3.2.9-r11.ebuild b/sys-libs/db/db-3.2.9-r11.ebuild index 73517280802c..2175283038c7 100644 --- a/sys-libs/db/db-3.2.9-r11.ebuild +++ b/sys-libs/db/db-3.2.9-r11.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-3.2.9-r11.ebuild,v 1.13 2007/10/24 07:07:55 wltjr Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/db/db-3.2.9-r11.ebuild,v 1.14 2007/10/25 07:03:32 tove Exp $ inherit gnuconfig libtool eutils db java-pkg-opt-2 @@ -48,7 +48,7 @@ src_unpack() { 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 || die "Failed to sed" + "${S}"/dist/Makefile.in.orig > "${S}"/dist/Makefile.in || die "Failed to sed" # Fix invalid .la files cd "${WORKDIR}"/${P}/dist |