diff options
author | Mike Pagano <mpagano@gentoo.org> | 2013-03-16 23:12:15 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2013-03-16 23:12:15 +0000 |
commit | af639a042e7d13fa6543c738e60bb85ff56c54a9 (patch) | |
tree | e50aa3adf2eb4b46f1ccb034370125ef361d1c7e /dev-libs | |
parent | Typing error (diff) | |
download | gentoo-2-af639a042e7d13fa6543c738e60bb85ff56c54a9.tar.gz gentoo-2-af639a042e7d13fa6543c738e60bb85ff56c54a9.tar.bz2 gentoo-2-af639a042e7d13fa6543c738e60bb85ff56c54a9.zip |
Fix linker arguments. Bug #375729
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key B576E4E3)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/klibc/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/klibc/klibc-1.5.25.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-libs/klibc/ChangeLog b/dev-libs/klibc/ChangeLog index 94d14b2ab518..550b00e4f34c 100644 --- a/dev-libs/klibc/ChangeLog +++ b/dev-libs/klibc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/klibc # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.88 2013/03/16 14:55:18 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.89 2013/03/16 23:12:15 mpagano Exp $ + + 16 Mar 2013; Michael Pagano <mpagano@gentoo.org> klibc-1.5.25.ebuild: + Fix linker arguments. Bug #375729 *klibc-2.0.2 (16 Mar 2013) diff --git a/dev-libs/klibc/klibc-1.5.25.ebuild b/dev-libs/klibc/klibc-1.5.25.ebuild index c9c01930049a..162c1f827b3b 100644 --- a/dev-libs/klibc/klibc-1.5.25.ebuild +++ b/dev-libs/klibc/klibc-1.5.25.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.25.ebuild,v 1.5 2013/01/06 09:22:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.5.25.ebuild,v 1.6 2013/03/16 23:12:15 mpagano Exp $ # Robin H. Johnson <robbat2@gentoo.org>, 12 Nov 2007: # This still needs major work. @@ -144,7 +144,7 @@ src_compile() { emake \ EXTRA_KLIBCAFLAGS="-Wa,--noexecstack" \ - EXTRA_KLIBCLDFLAGS="-z,noexecstack" \ + EXTRA_KLIBCLDFLAGS="-z noexecstack" \ HOSTCC="${HOSTCC}" CC="${CC}" \ INSTALLDIR="/usr/${libdir}/klibc" \ KLIBCARCH=${KLIBCARCH} \ @@ -188,7 +188,7 @@ src_install() { emake \ EXTRA_KLIBCAFLAGS="-Wa,--noexecstack" \ - EXTRA_KLIBCLDFLAGS="-z,noexecstack" \ + EXTRA_KLIBCLDFLAGS="-z noexecstack" \ HOSTCC="${HOSTCC}" CC="${CC}" \ INSTALLDIR="/usr/${libdir}/klibc" \ INSTALLROOT="${D}" \ |