From: Zac Medico Date: Mon, 2 Jul 2012 21:34:40 +0000 (-0700) Subject: portage.const: tweak preserve-libs conditional X-Git-Tag: v2.2.0_alpha115~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f38b58535453a54c4784617da4aca389cc3dedd8;p=portage.git portage.const: tweak preserve-libs conditional --- 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)