summaryrefslogtreecommitdiffstats
path: root/pym/_emerge
diff options
context:
space:
mode:
Diffstat (limited to 'pym/_emerge')
-rw-r--r--pym/_emerge/actions.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/pym/_emerge/actions.py b/pym/_emerge/actions.py
index 5fc43bd7b..9788c0857 100644
--- a/pym/_emerge/actions.py
+++ b/pym/_emerge/actions.py
@@ -2316,14 +2316,6 @@ def action_uninstall(settings, trees, ldpath_mtimes,
def adjust_config(myopts, settings):
"""Make emerge specific adjustments to the config."""
- # To enhance usability, make some vars case insensitive by forcing them to
- # lower case.
- for myvar in ("AUTOCLEAN", "NOCOLOR"):
- if myvar in settings:
- settings[myvar] = settings[myvar].lower()
- settings.backup_changes(myvar)
- del myvar
-
# Kill noauto as it will break merges otherwise.
if "noauto" in settings.features:
settings.features.remove('noauto')