aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2014-11-03 13:17:19 -0800
committerZac Medico <zmedico@gentoo.org>2014-11-03 13:17:19 -0800
commita899fee4b565d31c65ad8e458a2acf65f77fcb03 (patch)
tree7a88f8ee2a749eb8c9c616539f39c08804dc08b9 /pym/portage/util/movefile.py
parentCONFIG_PROTECT: protect symlinks, bug #485598 (diff)
downloadportage-a899fee4b565d31c65ad8e458a2acf65f77fcb03.tar.gz
portage-a899fee4b565d31c65ad8e458a2acf65f77fcb03.tar.bz2
portage-a899fee4b565d31c65ad8e458a2acf65f77fcb03.zip
Remove redundant PORTAGE_XATTR_EXCLUDE defaults (527636)
In install.py and movefile.py there were some redundant default PORTAGE_XATTR_EXCLUDE settings. The default settings in make.globals should be sufficient. Therefore, remove the redundant settings so that we don't have to maintain them. Fixes: 2fcdb5f36fac ("Add btrfs.* to default PORTAGE_XATTR_EXCLUDE (527636)") X-Gentoo-Bug: 527636 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=527636 Acked-by: Brian Dolbec <dolsen@gentoo.org> Acked-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'pym/portage/util/movefile.py')
-rw-r--r--pym/portage/util/movefile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/util/movefile.py b/pym/portage/util/movefile.py
index 452e77f0d..d00f6241a 100644
--- a/pym/portage/util/movefile.py
+++ b/pym/portage/util/movefile.py
@@ -328,7 +328,7 @@ def movefile(src, dest, newmtime=None, sstat=None, mysettings=None,
if xattr_enabled:
try:
_copyxattr(src_bytes, dest_tmp_bytes,
- exclude=mysettings.get("PORTAGE_XATTR_EXCLUDE", "security.* system.nfs4_acl"))
+ exclude=mysettings.get("PORTAGE_XATTR_EXCLUDE", ""))
except SystemExit:
raise
except: