From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-914419-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 818641395E2
	for <garchives@archives.gentoo.org>; Wed, 30 Nov 2016 21:41:48 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 693DBE0AA9;
	Wed, 30 Nov 2016 21:41:46 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 52CC8E0AA9
	for <gentoo-commits@lists.gentoo.org>; Wed, 30 Nov 2016 21:41:46 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 5848F340F2A
	for <gentoo-commits@lists.gentoo.org>; Wed, 30 Nov 2016 21:41:44 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id E73DC249C
	for <gentoo-commits@lists.gentoo.org>; Wed, 30 Nov 2016 21:41:42 +0000 (UTC)
From: "Anthony G. Basile" <blueness@gentoo.org>
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" <blueness@gentoo.org>
Message-ID: <1480541917.3b223cf10a204f416709ce2e392a9bd366aa0208.blueness@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xapian-bindings/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-libs/xapian-bindings/xapian-bindings-1.4.1.ebuild
X-VCS-Directories: dev-libs/xapian-bindings/
X-VCS-Committer: blueness
X-VCS-Committer-Name: Anthony G. Basile
X-VCS-Revision: 3b223cf10a204f416709ce2e392a9bd366aa0208
X-VCS-Branch: master
Date: Wed, 30 Nov 2016 21:41:42 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 30a17b20-6aa5-4194-9e65-49ac7cb32805
X-Archives-Hash: 053994ce540e3b0b6c5dc43bc39f945b

commit:     3b223cf10a204f416709ce2e392a9bd366aa0208
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 30 15:44:57 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Nov 30 21:38:37 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b223cf1

dev-libs/xapian-bindings: prevent python-related sandbox failure

Bug: https://bugs.gentoo.org/589642#c16

 dev-libs/xapian-bindings/xapian-bindings-1.4.1.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.4.1.ebuild b/dev-libs/xapian-bindings/xapian-bindings-1.4.1.ebuild
index 24783b9..42162b0 100644
--- a/dev-libs/xapian-bindings/xapian-bindings-1.4.1.ebuild
+++ b/dev-libs/xapian-bindings/xapian-bindings-1.4.1.ebuild
@@ -109,6 +109,10 @@ src_configure() {
 		else
 			myconf+=( --with-python )
 		fi
+
+		# Avoid sandbox failures when compiling modules
+		addpredict "$(python_get_sitedir)"
+
 		econf "${myconf[@]}"
 	}