diff options
author | 2008-11-16 16:39:36 +0000 | |
---|---|---|
committer | 2008-11-16 16:39:36 +0000 | |
commit | ad88881f08c80ae71d6532510680a48d5cce52e3 (patch) | |
tree | 4ecc14bf579cd714b3821b2b9d548339f96feaf9 /net-misc/ntpclient | |
parent | Masking development version of socat. (diff) | |
download | gentoo-2-ad88881f08c80ae71d6532510680a48d5cce52e3.tar.gz gentoo-2-ad88881f08c80ae71d6532510680a48d5cce52e3.tar.bz2 gentoo-2-ad88881f08c80ae71d6532510680a48d5cce52e3.zip |
Fix for --as-needed rather than filtering it out wrongly.
(Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)
Diffstat (limited to 'net-misc/ntpclient')
-rw-r--r-- | net-misc/ntpclient/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/ntpclient/ntpclient-2007.365.ebuild | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-misc/ntpclient/ChangeLog b/net-misc/ntpclient/ChangeLog index f6a0ce1d9ca9..99fddcb9c2a1 100644 --- a/net-misc/ntpclient/ChangeLog +++ b/net-misc/ntpclient/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/ntpclient # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ntpclient/ChangeLog,v 1.1 2008/06/22 06:36:02 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ntpclient/ChangeLog,v 1.2 2008/11/16 16:39:36 flameeyes Exp $ + + 16 Nov 2008; Diego E. Pettenò <flameeyes@gentoo.org> + ntpclient-2007.365.ebuild: + Fix for --as-needed rather than filtering it out wrongly. *ntpclient-2007.365 (22 Jun 2008) diff --git a/net-misc/ntpclient/ntpclient-2007.365.ebuild b/net-misc/ntpclient/ntpclient-2007.365.ebuild index 5ec9e6568ead..7e2d8e0a9767 100644 --- a/net-misc/ntpclient/ntpclient-2007.365.ebuild +++ b/net-misc/ntpclient/ntpclient-2007.365.ebuild @@ -1,6 +1,6 @@ # Copyright 2008-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/ntpclient/ntpclient-2007.365.ebuild,v 1.1 2008/06/22 06:36:02 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/ntpclient/ntpclient-2007.365.ebuild,v 1.2 2008/11/16 16:39:36 flameeyes Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -22,10 +22,10 @@ src_unpack() { unpack ${A} cd "${S}" sed -i -e s/'-O2'// Makefile + sed -i -e 's/LDFLAGS +=/LDLIBS +=/' Makefile } src_compile() { - filter-ldflags -Wl,--as-needed tc-export CC emake || die "emake failed in src_compile" } |