summaryrefslogtreecommitdiffstats
path: root/pym/portage/const.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-02-04 06:47:48 -0800
committerZac Medico <zmedico@gentoo.org>2012-02-04 06:47:48 -0800
commitdf19c66809165cebd9e2f0ca047e1a128a09681c (patch)
treee8375a67ca07c4b6450cb9120cf4819aec3c935f /pym/portage/const.py
parent1d6850f3ac839326c5596db5a570bc7832bb394e (diff)
downloadportage-df19c66809165cebd9e2f0ca047e1a128a09681c.tar.gz
portage-df19c66809165cebd9e2f0ca047e1a128a09681c.tar.bz2
portage-df19c66809165cebd9e2f0ca047e1a128a09681c.zip
Remove portage.const._ENABLE_XATTR.v2.2.0_alpha85
Diffstat (limited to 'pym/portage/const.py')
-rw-r--r--pym/portage/const.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py
index bebb92203..5d6aabc0d 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -165,7 +165,6 @@ _ENABLE_DYN_LINK_MAP = True
_ENABLE_PRESERVE_LIBS = True
_ENABLE_REPO_NAME_WARN = True
_ENABLE_SET_CONFIG = True
-_ENABLE_XATTR = True
# The definitions above will differ between branches, so it's useful to have
@@ -178,8 +177,3 @@ if not _ENABLE_PRESERVE_LIBS:
if not _ENABLE_SET_CONFIG:
WORLD_SETS_FILE = '/dev/null'
-
-if not _ENABLE_XATTR:
- SUPPORTED_FEATURES = set(SUPPORTED_FEATURES)
- SUPPORTED_FEATURES.remove("xattr")
- SUPPORTED_FEATURES = frozenset(SUPPORTED_FEATURES)