From f38b58535453a54c4784617da4aca389cc3dedd8 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 2 Jul 2012 14:34:40 -0700 Subject: portage.const: tweak preserve-libs conditional --- pym/portage/const.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pym/portage/const.py') 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) -- cgit v1.2.3-1-g7c22