diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-03-04 02:36:26 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-03-04 02:36:26 +0000 |
commit | a296f6b927e01bc06fa8127cf8a2d44084bd62d4 (patch) | |
tree | 176b2488ebe61b64f7804d9a8f2d2fa43e7f07a3 | |
parent | d8555464ba3dede7433a95d2c2e83c617216bbb1 (diff) | |
download | portage-a296f6b927e01bc06fa8127cf8a2d44084bd62d4.tar.gz portage-a296f6b927e01bc06fa8127cf8a2d44084bd62d4.tar.bz2 portage-a296f6b927e01bc06fa8127cf8a2d44084bd62d4.zip |
Remove the KVERS environment variable since it's code that creates it is broken anyway (only sets KVERS="." in the general case).
svn path=/main/trunk/; revision=6166
-rw-r--r-- | pym/portage/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 77b730715..3a51aa7ca 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2992,10 +2992,6 @@ def doebuild_environment(myebuild, mydo, myroot, mysettings, debug, use_cache, m else: mysettings["KV"]="" - if (mydo!="depend") or not mysettings.has_key("KVERS"): - myso=os.uname()[2] - mysettings["KVERS"]=myso[1] - # Allow color.map to control colors associated with einfo, ewarn, etc... mycolors = [] for c in ("GOOD", "WARN", "BAD", "HILITE", "BRACKET"): |