diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-04 14:20:36 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-04 14:20:36 +0000 |
commit | 5bd326cc79c11df4d327d54e059d25fa2815bc27 (patch) | |
tree | 047e80a7ea13dd6f7b013d04ef6a9569694f3eeb /sys-devel | |
parent | better idea (diff) | |
download | gentoo-2-5bd326cc79c11df4d327d54e059d25fa2815bc27.tar.gz gentoo-2-5bd326cc79c11df4d327d54e059d25fa2815bc27.tar.bz2 gentoo-2-5bd326cc79c11df4d327d54e059d25fa2815bc27.zip |
Replace -Wl,--no-as-needed with function from flag-o-matic eclass.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/libtool/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/libtool/libtool-2.2.6a.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sys-devel/libtool/ChangeLog b/sys-devel/libtool/ChangeLog index 82fff6464248..8bbaba8cb0d2 100644 --- a/sys-devel/libtool/ChangeLog +++ b/sys-devel/libtool/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/libtool # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.155 2009/09/29 17:12:42 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.156 2009/10/04 14:20:36 ssuominen Exp $ + + 04 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> libtool-2.2.6a.ebuild: + Replace -Wl,--no-as-needed with function from flag-o-matic eclass. 29 Sep 2009; Tobias Klausmann <klausman@gentoo.org> libtool-2.2.6a.ebuild: Stable on alpha, bug #257399 diff --git a/sys-devel/libtool/libtool-2.2.6a.ebuild b/sys-devel/libtool/libtool-2.2.6a.ebuild index be404358d244..17c70d5b84e5 100644 --- a/sys-devel/libtool/libtool-2.2.6a.ebuild +++ b/sys-devel/libtool/libtool-2.2.6a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v 1.17 2009/09/29 17:12:42 klausman Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v 1.18 2009/10/04 14:20:36 ssuominen Exp $ LIBTOOLIZE="true" #225559 inherit eutils autotools flag-o-matic multilib @@ -29,7 +29,7 @@ pkg_setup() { einfo "to run tests. With the stricter (older) --as-needed behaviour" einfo "you'd be seeing a test failure in test #63; this has been fixed" einfo "in the newer version of binutils." - append-ldflags -Wl,--no-as-needed + append-ldflags $(no-as-needed) fi } |