From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 C6E44138334 for ; Sat, 19 Jan 2019 03:22:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A01BCE097E; Sat, 19 Jan 2019 03:22:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5E0CDE0982 for ; Sat, 19 Jan 2019 03:22:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 44A55335CF5 for ; Sat, 19 Jan 2019 03:22:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B633515 for ; Sat, 19 Jan 2019 03:22:24 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1547863034.61c127049d82e2d11f8b9fbc54123c90619e0aed.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/xen-tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/xen-tools/xen-tools-4.11.1.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 61c127049d82e2d11f8b9fbc54123c90619e0aed X-VCS-Branch: master Date: Sat, 19 Jan 2019 03:22:24 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f43f28ab-94c0-410e-b5ff-c97f02bf648e X-Archives-Hash: 443a1d90bd1834ca73895e38b7b7b93a commit: 61c127049d82e2d11f8b9fbc54123c90619e0aed Author: Tomas Mozes gmail com> AuthorDate: Wed Jan 9 15:00:14 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Jan 19 01:57:14 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c12704 app-emulation/xen-tools: disable capstone Closes: https://bugs.gentoo.org/673474 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Tomáš Mózes gmail.com> Signed-off-by: Thomas Deutschmann gentoo.org> app-emulation/xen-tools/xen-tools-4.11.1.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-emulation/xen-tools/xen-tools-4.11.1.ebuild b/app-emulation/xen-tools/xen-tools-4.11.1.ebuild index 7974e45297c..fe149384f1b 100644 --- a/app-emulation/xen-tools/xen-tools-4.11.1.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.11.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -334,6 +334,10 @@ src_prepare() { -e 's:^#vif.default.script=:vif.default.script=:' \ -i tools/examples/xl.conf || die + # disable capstone (Bug #673474) + sed -e "s:\$\$source/configure:\0 --disable-capstone:" \ + -i tools/Makefile || die + default }