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 1BF04138334 for ; Thu, 9 May 2019 19:02:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97242E0843; Thu, 9 May 2019 19:02:47 +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 5D727E0843 for ; Thu, 9 May 2019 19:02:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 9F5A8343EC9 for ; Thu, 9 May 2019 19:02:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C5485E1 for ; Thu, 9 May 2019 19:02:44 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1557428547.e9a7ca5bb0f8625c96d30e8285c0c4e802abb5cb.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/openjdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/openjdk/openjdk-8.212_p03.ebuild X-VCS-Directories: dev-java/openjdk/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: e9a7ca5bb0f8625c96d30e8285c0c4e802abb5cb X-VCS-Branch: master Date: Thu, 9 May 2019 19:02: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2da4ca0d-09c1-4b67-a6b5-e5b07ee9d731 X-Archives-Hash: 2967680f3c71c2e43158113fdced537c commit: e9a7ca5bb0f8625c96d30e8285c0c4e802abb5cb Author: Georgy Yakovlev gentoo org> AuthorDate: Thu May 9 18:53:30 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Thu May 9 19:02:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a7ca5b dev-java/openjdk: fix build on gcc-9 by passing -Wno-error Closes: https://bugs.gentoo.org/685426 Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> dev-java/openjdk/openjdk-8.212_p03.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-java/openjdk/openjdk-8.212_p03.ebuild b/dev-java/openjdk/openjdk-8.212_p03.ebuild index f2214b13c4a..ea225e67d62 100644 --- a/dev-java/openjdk/openjdk-8.212_p03.ebuild +++ b/dev-java/openjdk/openjdk-8.212_p03.ebuild @@ -133,6 +133,9 @@ src_prepare() { for repo in corba hotspot jdk jaxp jaxws langtools nashorn; do ln -s ../"${repo}-jdk${MY_PV}" "${repo}" || die done + # new warnings in new gcc https://bugs.gentoo.org/685426 + sed -i '/^WARNINGS_ARE_ERRORS/ s/-Werror/-Wno-error/' \ + hotspot/make/linux/makefiles/gcc.make || die } src_configure() {