diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-10-11 22:11:26 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-10-11 22:11:26 +0000 |
commit | a8583b22a7042a8c6a941cc11013bac2ad3970c4 (patch) | |
tree | a0f067e844e0f8de619691251859a59e942baa1d | |
parent | b92f0c20115b079525f94ec246c917058f77f7ac (diff) | |
download | portage-a8583b22a7042a8c6a941cc11013bac2ad3970c4.tar.gz portage-a8583b22a7042a8c6a941cc11013bac2ad3970c4.tar.bz2 portage-a8583b22a7042a8c6a941cc11013bac2ad3970c4.zip |
Make an mtime change force an ldconfig run, since it's possible that pre/postinst made changes in lib dirs (noted by Brian Harring).
svn path=/main/trunk/; revision=4662
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index cd1a78a71..240b3e487 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -698,7 +698,7 @@ def env_update(makelinks=1, target_root=None, prev_mtimes=None, contents=None): prev_mtimes[x] = newldpathtime mtime_changed = True - if contents is None and mtime_changed: + if mtime_changed: ld_cache_update = True if makelinks and \ |