summaryrefslogtreecommitdiffstats
path: root/pym/portage/util/env_update.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-08-30 12:39:51 -0700
committerZac Medico <zmedico@gentoo.org>2011-08-30 12:39:51 -0700
commitf87d1ef9b0b79b5a9e8f59291e7173363cd7386e (patch)
tree2bfa204d4884a33908456c548bb57afbecf97fbd /pym/portage/util/env_update.py
parent4bbfe6241ec7a4d286a1e8b3074c9dde0de4f2ea (diff)
downloadportage-f87d1ef9b0b79b5a9e8f59291e7173363cd7386e.tar.gz
portage-f87d1ef9b0b79b5a9e8f59291e7173363cd7386e.tar.bz2
portage-f87d1ef9b0b79b5a9e8f59291e7173363cd7386e.zip
env_update: use ldsoconf_update var
This fixes an unintended change in behavior from commit a37eb8ebd2fad3f8074490a061f067e2c637f05d, so that the ldconfig call will not be skipped when ld.so.conf has been updated (though ldconfig is still never called when makelinks=False).
Diffstat (limited to 'pym/portage/util/env_update.py')
-rw-r--r--pym/portage/util/env_update.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/util/env_update.py b/pym/portage/util/env_update.py
index 173166351..0d80fa3d8 100644
--- a/pym/portage/util/env_update.py
+++ b/pym/portage/util/env_update.py
@@ -231,6 +231,7 @@ def env_update(makelinks=1, target_root=None, prev_mtimes=None, contents=None,
if makelinks and \
not mtime_changed and \
+ and not ldsoconf_update and \
contents is not None:
libdir_contents_changed = False
for mypath, mydata in contents.items():