diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-09-12 14:37:45 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-09-12 14:37:45 +0000 |
commit | 3c97f40225c1813e8057b2d58e03e57c85c5cdda (patch) | |
tree | fa7b9692794804636d2f896d1e0783004a5766a3 /dev-util/pmk | |
parent | Add ree18. (diff) | |
download | gentoo-2-3c97f40225c1813e8057b2d58e03e57c85c5cdda.tar.gz gentoo-2-3c97f40225c1813e8057b2d58e03e57c85c5cdda.tar.bz2 gentoo-2-3c97f40225c1813e8057b2d58e03e57c85c5cdda.zip |
Make this respect LDFLAGS, bug #334987 (by Flameeyes).
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/pmk')
-rw-r--r-- | dev-util/pmk/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/pmk/pmk-0.10.4.ebuild | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-util/pmk/ChangeLog b/dev-util/pmk/ChangeLog index 304e977f1cec..0391ec4fda59 100644 --- a/dev-util/pmk/ChangeLog +++ b/dev-util/pmk/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/pmk # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pmk/ChangeLog,v 1.13 2010/02/21 01:38:17 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pmk/ChangeLog,v 1.14 2010/09/12 14:37:45 pacho Exp $ + + 12 Sep 2010; Pacho Ramos <pacho@gentoo.org> pmk-0.10.4.ebuild: + Make this respect LDFLAGS, bug #334987 (by Flameeyes). 21 Feb 2010; Jonathan Callen <abcd@gentoo.org> pmk-0.10.4.ebuild: Transfer prefix keywords, bump EAPI diff --git a/dev-util/pmk/pmk-0.10.4.ebuild b/dev-util/pmk/pmk-0.10.4.ebuild index 4e2d43198b1f..fc33c193c3f5 100644 --- a/dev-util/pmk/pmk-0.10.4.ebuild +++ b/dev-util/pmk/pmk-0.10.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pmk/pmk-0.10.4.ebuild,v 1.2 2010/02/21 01:38:17 abcd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pmk/pmk-0.10.4.ebuild,v 1.3 2010/09/12 14:37:45 pacho Exp $ EAPI=3 @@ -19,8 +19,9 @@ DEPEND="" RDEPEND="" src_prepare() { - unpack ${A} - cd "${S}" + # Make this respect LDFLAGS, bug #334987 + sed -i -e "s:CLDFLAGS:LDFLAGS:" Makefile.pmk || die + sed -i -e "/@CLDFLAGS@/d" Makefile.pmk || die # Remove executable stack cp detect_cpu_asm.s detect_cpu_asm.S |