diff options
author | Zac Medico <zmedico@gentoo.org> | 2012-09-21 15:03:12 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2012-11-29 14:59:32 -0800 |
commit | ee8445faf9abe092d8981a90278df2b40d7ac29b (patch) | |
tree | 8a7bdaf1bf119e364d094bdaaf16bb009692fe4f | |
parent | repoman: handle missing @DEPRECATED lic group (diff) | |
download | portage-ee8445faf9abe092d8981a90278df2b40d7ac29b.tar.gz portage-ee8445faf9abe092d8981a90278df2b40d7ac29b.tar.bz2 portage-ee8445faf9abe092d8981a90278df2b40d7ac29b.zip |
portage.const: toggle constants for stable branch
-rw-r--r-- | pym/portage/const.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py index 8c5bbf308..8069916b8 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -167,7 +167,7 @@ if "PORTAGE_OVERRIDE_EPREFIX" in os.environ: # Private constants for use in conditional code in order to minimize the diff # between branches. -_DEPCLEAN_LIB_CHECK_DEFAULT = True -_ENABLE_REPO_NAME_WARN = True -_ENABLE_SET_CONFIG = True -_ENABLE_INHERIT_CHECK = True +_DEPCLEAN_LIB_CHECK_DEFAULT = 'n' +_ENABLE_REPO_NAME_WARN = False +_ENABLE_SET_CONFIG = False +_ENABLE_INHERIT_CHECK = False |