From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7EC74138BC5 for ; Sun, 2 Nov 2014 21:46:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39E0BE0798; Sun, 2 Nov 2014 21:46:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC4BEE0798 for ; Sun, 2 Nov 2014 21:46:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D407834038B for ; Sun, 2 Nov 2014 21:46:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C0DA94DB for ; Sun, 2 Nov 2014 21:46:44 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1414964865.5a4029395a17ec9875df3d28efbde0ef0b82868c.blueness@gentoo> Subject: [gentoo-commits] proj/elfix:master commit in: misc/install-xattr/ X-VCS-Repository: proj/elfix X-VCS-Files: misc/install-xattr/install-xattr.c X-VCS-Directories: misc/install-xattr/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 5a4029395a17ec9875df3d28efbde0ef0b82868c X-VCS-Branch: master Date: Sun, 2 Nov 2014 21:46:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bda18679-0b06-4b1f-9048-62183464f9db X-Archives-Hash: 86beb87234983fcb493f1650dad28085 commit: 5a4029395a17ec9875df3d28efbde0ef0b82868c Author: Anthony G. Basile gentoo org> AuthorDate: Sun Nov 2 21:47:25 2014 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Nov 2 21:47:45 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/elfix.git;a=commit;h=5a402939 misc/install-xattr: add btrfs.* to excluded xattrs X-Gentoo-Bug: 527636 X-Gentoo-Bug-URL: https://bugs.gentoo.org/527636 --- misc/install-xattr/install-xattr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);