diff options
author | 2014-11-02 16:47:25 -0500 | |
---|---|---|
committer | 2014-11-02 16:47:45 -0500 | |
commit | 5a4029395a17ec9875df3d28efbde0ef0b82868c (patch) | |
tree | 58fe595b57d76d9e85d805755e8cafe03332bb2e /misc | |
parent | scripts/paxmark.sh: backport improvements from pax-utils.eclass (diff) | |
download | elfix-5a4029395a17ec9875df3d28efbde0ef0b82868c.tar.gz elfix-5a4029395a17ec9875df3d28efbde0ef0b82868c.tar.bz2 elfix-5a4029395a17ec9875df3d28efbde0ef0b82868c.zip |
misc/install-xattr: add btrfs.* to excluded xattrs
X-Gentoo-Bug: 527636
X-Gentoo-Bug-URL: https://bugs.gentoo.org/527636
Diffstat (limited to 'misc')
-rw-r--r-- | misc/install-xattr/install-xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/install-xattr/install-xattr.c b/misc/install-xattr/install-xattr.c index 2f349df..b650c67 100644 --- a/misc/install-xattr/install-xattr.c +++ b/misc/install-xattr/install-xattr.c @@ -251,7 +251,7 @@ main(int argc, char* argv[]) portage_xattr_exclude = getenv("PORTAGE_XATTR_EXCLUDE"); if (portage_xattr_exclude == NULL) - exclude = xstrdup("security.* trusted.* system.nfs4_acl"); + exclude = xstrdup("btrfs.* security.* trusted.* system.nfs4_acl"); else exclude = xstrdup(portage_xattr_exclude); |