diff options
author | Zac Medico <zmedico@gentoo.org> | 2012-04-14 07:26:34 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2012-04-14 07:26:34 +0000 |
commit | f4f91546cdadfa630c67a6ef9ce902300c45a9ec (patch) | |
tree | cd0b657a28b23bd408a5b294b03e718916848f01 /net-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-f4f91546cdadfa630c67a6ef9ce902300c45a9ec.tar.gz gentoo-2-f4f91546cdadfa630c67a6ef9ce902300c45a9ec.tar.bz2 gentoo-2-f4f91546cdadfa630c67a6ef9ce902300c45a9ec.zip |
Fix for USE=-static-libs for prefix.
(Portage version: 2.2.0_alpha100_p7/cvs/Linux i686)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libnet/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/libnet/libnet-1.1.6.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-libs/libnet/ChangeLog b/net-libs/libnet/ChangeLog index 49cf5b8290d5..5d02874d5cab 100644 --- a/net-libs/libnet/ChangeLog +++ b/net-libs/libnet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libnet # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.77 2012/03/30 16:07:14 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/ChangeLog,v 1.78 2012/04/14 07:26:34 zmedico Exp $ + + 14 Apr 2012; Zac Medico <zmedico@gentoo.org> libnet-1.1.6.ebuild: + Fix for USE=-static-libs for prefix. *libnet-1.1.6 (30 Mar 2012) diff --git a/net-libs/libnet/libnet-1.1.6.ebuild b/net-libs/libnet/libnet-1.1.6.ebuild index fea674c1369e..4e6a4ca9623f 100644 --- a/net-libs/libnet/libnet-1.1.6.ebuild +++ b/net-libs/libnet/libnet-1.1.6.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.1.6.ebuild,v 1.1 2012/03/30 16:07:14 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.1.6.ebuild,v 1.2 2012/04/14 07:26:34 zmedico Exp $ EAPI=4 @@ -37,6 +37,6 @@ src_install() { fi if ! use static-libs; then - rm "${D}"/usr/lib*/libnet.la || die + rm "${ED}"/usr/lib*/libnet.la || die fi } |