diff options
author | Zac Medico <zmedico@gentoo.org> | 2012-06-02 00:18:25 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2012-09-08 16:24:59 -0700 |
commit | a66524a1d320d2063ad1f12e1d075c044071acaf (patch) | |
tree | 0b4e5f31352b94728727445a23b410c3a434e512 | |
parent | egencache: tweak metadata-transfer logic (diff) | |
download | portage-a66524a1d320d2063ad1f12e1d075c044071acaf.tar.gz portage-a66524a1d320d2063ad1f12e1d075c044071acaf.tar.bz2 portage-a66524a1d320d2063ad1f12e1d075c044071acaf.zip |
portage.const: toggle constants for stable branch
-rw-r--r-- | pym/portage/const.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py index 3b8e350a2..7659d7f4f 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -166,11 +166,11 @@ if "PORTAGE_OVERRIDE_EPREFIX" in os.environ: # Private constants for use in conditional code in order to minimize the diff # between branches. -_ENABLE_DYN_LINK_MAP = True -_ENABLE_PRESERVE_LIBS = True -_ENABLE_REPO_NAME_WARN = True -_ENABLE_SET_CONFIG = True -_ENABLE_INHERIT_CHECK = True +_ENABLE_DYN_LINK_MAP = False +_ENABLE_PRESERVE_LIBS = False +_ENABLE_REPO_NAME_WARN = False +_ENABLE_SET_CONFIG = False +_ENABLE_INHERIT_CHECK = False # The definitions above will differ between branches, so it's useful to have |