From: Zac Medico Date: Sun, 13 Dec 2009 03:52:59 +0000 (-0000) Subject: Remove redundant EPREFIX setting since it's already initialized earlier in the X-Git-Tag: v2.1.7.14~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=347e1d544aabfc3ac04bc06810fba16e2e7070de;p=portage.git Remove redundant EPREFIX setting since it's already initialized earlier in the config constructor. (trunk r15044) svn path=/main/branches/2.1.7/; revision=15078 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index d9143c4fe..9a0b7265d 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2229,10 +2229,6 @@ class config(object): _validate_cache_for_unsupported_eapis = False _glep_55_enabled = True - # inject EPREFIX as it needs to be available using portageq - # TODO: this is just forward compatability, need to use EPREFIX - self["EPREFIX"] = '' - for k in self._case_insensitive_vars: if k in self: self[k] = self[k].lower()