diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2005-02-01 16:24:43 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2005-02-01 16:24:43 +0000 |
commit | d56bbe023f09cfcb89cfeeb18fb7a41a07e812de (patch) | |
tree | 10817f53b12803565ebfaca19bd1940ca83b8a9c /sys-devel/patch | |
parent | cleanup (diff) | |
download | gentoo-2-d56bbe023f09cfcb89cfeeb18fb7a41a07e812de.tar.gz gentoo-2-d56bbe023f09cfcb89cfeeb18fb7a41a07e812de.tar.bz2 gentoo-2-d56bbe023f09cfcb89cfeeb18fb7a41a07e812de.zip |
Removed obsolete amd64-hardened workaround.
(Portage version: 2.0.51-r14)
Diffstat (limited to 'sys-devel/patch')
-rw-r--r-- | sys-devel/patch/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/patch/patch-2.5.9-r1.ebuild | 14 |
2 files changed, 5 insertions, 14 deletions
diff --git a/sys-devel/patch/ChangeLog b/sys-devel/patch/ChangeLog index b40cff96f132..e1edb7f9cf1e 100644 --- a/sys-devel/patch/ChangeLog +++ b/sys-devel/patch/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/patch # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.27 2005/01/20 23:24:54 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.28 2005/02/01 16:24:43 kugelfang Exp $ + + 01 Feb 2005; Danny van Dyk <kugelfang@gentoo.org> patch-2.5.9-r1.ebuild: + Removed amd64-hardened workaround, as it isn't necessary anymore. 20 Jan 2005; Marcus Hanwell <cryos@gentoo.org> patch-2.5.9-r1.ebuild: Marked stable for amd64. diff --git a/sys-devel/patch/patch-2.5.9-r1.ebuild b/sys-devel/patch/patch-2.5.9-r1.ebuild index a552fda2b679..0136995859ce 100644 --- a/sys-devel/patch/patch-2.5.9-r1.ebuild +++ b/sys-devel/patch/patch-2.5.9-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.5.9-r1.ebuild,v 1.2 2005/01/20 23:24:54 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.5.9-r1.ebuild,v 1.3 2005/02/01 16:24:43 kugelfang Exp $ inherit flag-o-matic eutils @@ -28,19 +28,7 @@ src_compile() { append-flags -DLINUX -D_XOPEN_SOURCE=500 use static && append-ldflags -static - # workaround for hardened on amd64, 1st part - if use amd64 && is-ldflags -pie; then - einfo Stripping "-pie" from LDFLAGS, adding it to Makefile manually - filter-ldflags -pie - append-flags -fPIC - LDFLAGS_PIE="1" - fi ac_cv_sys_long_file_names=yes econf || die - # workaround for hardened on amd64, 2nd part - if [ "${LDFLAGS_PIE}" = "1" ]; then - einfo "Patching Makefile..." - sed -i -e 's/^LDFLAGS =/& -pie/' Makefile || die "Patching Makefile failed!" - fi emake || die "emake failed" } |