From f87d1ef9b0b79b5a9e8f59291e7173363cd7386e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 30 Aug 2011 12:39:51 -0700 Subject: [PATCH] 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). --- pym/portage/util/env_update.py | 1 + 1 file changed, 1 insertion(+) 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(): -- 2.26.2