summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/env_update.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/util/env_update.py')
-rw-r--r--pym/portage/util/env_update.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/pym/portage/util/env_update.py b/pym/portage/util/env_update.py
index e8507b3f7..ace4077f7 100644
--- a/pym/portage/util/env_update.py
+++ b/pym/portage/util/env_update.py
@@ -183,8 +183,6 @@ def _env_update(makelinks, target_root, prev_mtimes, contents, env,
raise
oldld = None
- ldsoconf_update = False
-
newld = specials["LDPATH"]
if (oldld != newld):
#ld.so.conf needs updating and ldconfig needs to be run
@@ -194,7 +192,6 @@ def _env_update(makelinks, target_root, prev_mtimes, contents, env,
for x in specials["LDPATH"]:
myfd.write(x + "\n")
myfd.close()
- ldsoconf_update = True
# Update prelink.conf if we are prelink-enabled
if prelink_capable:
@@ -267,7 +264,6 @@ def _env_update(makelinks, target_root, prev_mtimes, contents, env,
if makelinks and \
not mtime_changed and \
- not ldsoconf_update and \
contents is not None:
libdir_contents_changed = False
for mypath, mydata in contents.items():