summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/portage.py b/pym/portage.py
index f94870b87..ef6f32c9c 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -501,8 +501,9 @@ def env_update(makelinks=1, target_root=None, prev_mtimes=None):
del e
continue
if myconfig is None:
- # file removed by a concurrent process
- raise portage_exception.FileNotFound(file_path)
+ # broken symlink or file removed by a concurrent process
+ writemsg("!!! File Not Found: '%s'\n" % file_path, noiselevel=-1)
+ continue
# process PATH, CLASSPATH, LDPATH
for myspec in specials.keys():
if myconfig.has_key(myspec):