summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 54eb19a13..88bc3816c 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -7164,7 +7164,7 @@ class dblink:
try:
# Remove permissions to ensure that any hardlinks to
# suid/sgid files are rendered harmless.
- if statobj:
+ if statobj and not islink:
os.chmod(obj, 0)
os.unlink(obj)
except EnvironmentError, e: