summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-07-02 14:34:40 -0700
committerZac Medico <zmedico@gentoo.org>2012-07-02 14:34:40 -0700
commitf38b58535453a54c4784617da4aca389cc3dedd8 (patch)
tree8d1757b015c639c9f70cc7c52d631f295b8471bc
parentAtom: evaluate_conditionals slot-abi, bug #424489 (diff)
downloadportage-f38b58535453a54c4784617da4aca389cc3dedd8.tar.gz
portage-f38b58535453a54c4784617da4aca389cc3dedd8.tar.bz2
portage-f38b58535453a54c4784617da4aca389cc3dedd8.zip
portage.const: tweak preserve-libs conditional
-rw-r--r--pym/portage/const.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py
index 4a077102e..51dcfb0bd 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -98,7 +98,7 @@ SUPPORTED_FEATURES = frozenset([
"noauto", "noclean", "nodoc", "noinfo", "noman",
"nostrip", "notitles", "parallel-fetch", "parallel-install",
"parse-eapi-ebuild-head",
- "prelink-checksums", "preserve-libs",
+ "prelink-checksums",
"protect-owned", "python-trace", "sandbox",
"selinux", "sesandbox", "sfperms",
"sign", "skiprocheck", "split-elog", "split-log", "splitdebug",
@@ -173,7 +173,7 @@ _ENABLE_INHERIT_CHECK = True
# The definitions above will differ between branches, so it's useful to have
# common lines of diff context here in order to avoid merge conflicts.
-if not _ENABLE_PRESERVE_LIBS:
+if _ENABLE_PRESERVE_LIBS:
SUPPORTED_FEATURES = set(SUPPORTED_FEATURES)
- SUPPORTED_FEATURES.remove("preserve-libs")
+ SUPPORTED_FEATURES.add("preserve-libs")
SUPPORTED_FEATURES = frozenset(SUPPORTED_FEATURES)