projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96506ec
)
Ignore ENOTDIR from unmerge unlink calls.
author
Zac Medico
<zmedico@gentoo.org>
Thu, 27 Sep 2007 19:22:05 +0000
(19:22 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 27 Sep 2007 19:22:05 +0000
(19:22 -0000)
svn path=/main/trunk/; revision=7856
pym/portage/dbapi/vartree.py
patch
|
blob
|
history
diff --git
a/pym/portage/dbapi/vartree.py
b/pym/portage/dbapi/vartree.py
index fda5a2278820ee48009b5b1ddc0c3b40138910cf..f3b806ea5b4346dc065830e249c7b69259f36306 100644
(file)
--- a/
pym/portage/dbapi/vartree.py
+++ b/
pym/portage/dbapi/vartree.py
@@
-1184,7
+1184,7
@@
class dblink(object):
#process symlinks second-to-last, directories last.
mydirs = []
- ignored_unlink_errnos = (errno.ENOENT, errno.EISDIR)
+ ignored_unlink_errnos = (errno.ENOENT, errno.E
NOTDIR, errno.E
ISDIR)
modprotect = os.path.join(self.vartree.root, "lib/modules/")
def unlink(file_name, lstatobj):