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 B3D0D1396D9 for ; Tue, 17 Oct 2017 07:25:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C22DCE0E5A; Tue, 17 Oct 2017 07:25:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 9DB83E0E4B for ; Tue, 17 Oct 2017 07:25:00 +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 4CE6A33BF24 for ; Tue, 17 Oct 2017 07:24:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3C9A31A for ; Tue, 17 Oct 2017 07:24:57 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1508225070.6b9ff912c8bc4db4d4cafe3d72e5803904391725.dlan@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.8.2-r2.ebuild X-VCS-Directories: app-emulation/xen-tools/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: 6b9ff912c8bc4db4d4cafe3d72e5803904391725 X-VCS-Branch: master Date: Tue, 17 Oct 2017 07:24:57 +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: 503f88a4-601e-40bb-8186-7a157e697da9 X-Archives-Hash: 2b7bd2b56154b909d9de14610d6726c9 commit: 6b9ff912c8bc4db4d4cafe3d72e5803904391725 Author: Tomas Mozes sygic com> AuthorDate: Mon Oct 16 12:24:07 2017 +0000 Commit: Yixun Lan gentoo org> CommitDate: Tue Oct 17 07:24:30 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b9ff912 app-emulation/xen-tools: fix building with gcc 7 Gentoo-Bug: 626008 Closes: https://github.com/gentoo/gentoo/pull/5962 Signed-off-by: Yixun Lan gentoo.org> app-emulation/xen-tools/xen-tools-4.8.2-r2.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-emulation/xen-tools/xen-tools-4.8.2-r2.ebuild b/app-emulation/xen-tools/xen-tools-4.8.2-r2.ebuild index 7d6fde136d8..ed261704df2 100644 --- a/app-emulation/xen-tools/xen-tools-4.8.2-r2.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.8.2-r2.ebuild @@ -256,6 +256,11 @@ src_prepare() { mv tools/qemu-xen/qemu-bridge-helper.c tools/qemu-xen/xen-bridge-helper.c || die + # Fix building with gcc 7, Bug #634338 + # https://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=f49fa658b53580cf2ad354d2bf1796766cc11222 + sed -e 's/name\[60\]/name\[100\]/g' \ + -i tools/misc/xenlockprof.c || die + # Fix texi2html build error with new texi2html, qemu.doc.html sed -i -e "/texi2html -monolithic/s/-number//" tools/qemu-xen-traditional/Makefile || die