summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2017-01-23 20:43:31 +0000
committerJames Le Cuirot <chewi@gentoo.org>2017-01-23 22:52:03 +0000
commiteb09a477def3bb335cf516caef0c5677a3127555 (patch)
tree79f19fa9a594dfabe7c5f34dda7e92a00bc5f494 /eclass
parentsci-geosciences/gpsbabel: Drop USE=qt5 (diff)
downloadgentoo-eb09a477def3bb335cf516caef0c5677a3127555.tar.gz
gentoo-eb09a477def3bb335cf516caef0c5677a3127555.tar.bz2
gentoo-eb09a477def3bb335cf516caef0c5677a3127555.zip
java-vm-2.eclass: PT PaX markings are no longer supported, bug #592856
The -C flag to paxctl has been stripped out by pax-utils.eclass for ages anyway.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/java-vm-2.eclass8
1 files changed, 3 insertions, 5 deletions
diff --git a/eclass/java-vm-2.eclass b/eclass/java-vm-2.eclass
index e2d77ad23908..ea09c7b6fa91 100644
--- a/eclass/java-vm-2.eclass
+++ b/eclass/java-vm-2.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -280,10 +280,8 @@ java-vm_set-pax-markings() {
local executables=( "${1}"/bin/* )
[[ -d "${1}"/jre ]] && executables+=( "${1}"/jre/bin/* )
- # Ensure a PaX header is created.
- local pax_markings="C"
- # Usally disabeling MPROTECT is sufficent.
- local pax_markings+="m"
+ # Usually disabling MPROTECT is sufficient.
+ local pax_markings="m"
# On x86 for heap sizes over 700MB disable SEGMEXEC and PAGEEXEC as well.
use x86 && pax_markings+="sp"