summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/main.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-04-28 14:07:08 -0700
committerZac Medico <zmedico@gentoo.org>2011-04-28 14:07:08 -0700
commit593b57110c6f441d03d9ae623de9ff99a2e57905 (patch)
tree713a7104d6f25088b5bceec32cdff7cd8ff46fd0 /pym/_emerge/main.py
parentebb887ee7606ec2dd7b266dd3538e68b31ac3a38 (diff)
downloadportage-593b57110c6f441d03d9ae623de9ff99a2e57905.tar.gz
portage-593b57110c6f441d03d9ae623de9ff99a2e57905.tar.bz2
portage-593b57110c6f441d03d9ae623de9ff99a2e57905.zip
display_preserved_libs: load plib_registry
Since commit 7535cabdf2fab76fc55df83643157613dfd66be9, the plib_registry is modified in a subprocess, and the parent process' copy can become stale because of this. Therefore, explicitly load it.
Diffstat (limited to 'pym/_emerge/main.py')
-rw-r--r--pym/_emerge/main.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py
index 82b1444c5..e0cd0c024 100644
--- a/pym/_emerge/main.py
+++ b/pym/_emerge/main.py
@@ -217,7 +217,9 @@ def display_preserved_libs(vardbapi, myopts):
# preserve-libs is entirely disabled
return
- # Ensure the registry is consistent with existing files.
+ # Explicitly load and prune the PreservedLibsRegistry in order
+ # to ensure that we do not display stale data.
+ vardbapi._plib_registry.load()
vardbapi._plib_registry.pruneNonExisting()
if vardbapi._plib_registry.hasEntries():