diff options
author | Magnus Granberg <zorry@gentoo.org> | 2019-04-23 01:48:23 +0200 |
---|---|---|
committer | Magnus Granberg <zorry@gentoo.org> | 2019-04-23 01:48:23 +0200 |
commit | c22b9f2f820e2648c3b39622ef0996671e198e66 (patch) | |
tree | 8156f22eed4b055965f3e27e23529699be0694e5 /eclass | |
parent | dev-libs/libgpg-error: version bump along with gawk-5 upstream fix (diff) | |
download | gentoo-c22b9f2f820e2648c3b39622ef0996671e198e66.tar.gz gentoo-c22b9f2f820e2648c3b39622ef0996671e198e66.tar.bz2 gentoo-c22b9f2f820e2648c3b39622ef0996671e198e66.zip |
pax-utils.eclass: set PAX_MARKINGS to none
We no longer pax mark packages as default.
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/pax-utils.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass index f6f9623cc900..ef7c5b90069b 100644 --- a/eclass/pax-utils.eclass +++ b/eclass/pax-utils.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: pax-utils.eclass @@ -15,10 +15,10 @@ # The eclass wraps the use of paxctl-ng, paxctl, set/getattr and scanelf utilities, # deciding which to use depending on what's installed on the build host, and # whether we're working with PT_PAX, XATTR_PAX or both. +# Legacy PT_PAX markings no longer supported. # # To control what markings are made, set PAX_MARKINGS in /etc/portage/make.conf -# to contain either "PT", "XT" or "none". The default is to attempt both -# PT_PAX and XATTR_PAX. +# to contain either "PT", "XT" or "none". The default is none if [[ -z ${_PAX_UTILS_ECLASS} ]]; then _PAX_UTILS_ECLASS=1 @@ -27,8 +27,8 @@ _PAX_UTILS_ECLASS=1 # @DESCRIPTION: # Control which markings are made: # PT = PT_PAX markings, XT = XATTR_PAX markings -# Default to PT markings. -PAX_MARKINGS=${PAX_MARKINGS:="PT XT"} +# Default to none markings. +PAX_MARKINGS=${PAX_MARKINGS:="none"} # @FUNCTION: pax-mark # @USAGE: <flags> <ELF files> |