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 6967A138334 for ; Thu, 28 Jun 2018 22:13:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75A7AE08E0; Thu, 28 Jun 2018 22:13:42 +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 47E4BE08E0 for ; Thu, 28 Jun 2018 22:13:41 +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 29D5C335C9B for ; Thu, 28 Jun 2018 22:13:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 158B1300 for ; Thu, 28 Jun 2018 22:13:38 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1530224000.9d7a236e7ef784335d49acaba02ad4127df32377.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/icedtea/icedtea-3.8.0.ebuild X-VCS-Directories: dev-java/icedtea/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 9d7a236e7ef784335d49acaba02ad4127df32377 X-VCS-Branch: master Date: Thu, 28 Jun 2018 22:13:38 +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: 32a3af38-a630-4018-947e-6e29276d79bd X-Archives-Hash: 27be1959e02d9b863fb8c5d669d0333a commit: 9d7a236e7ef784335d49acaba02ad4127df32377 Author: James Le Cuirot gentoo org> AuthorDate: Thu Jun 28 22:13:20 2018 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Thu Jun 28 22:13:20 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d7a236e dev-java/icedtea: Disable ccache unconditionally as it always breaks Closes: https://bugs.gentoo.org/624230 Package-Manager: Portage-2.3.41, Repoman-2.3.9 dev-java/icedtea/icedtea-3.8.0.ebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dev-java/icedtea/icedtea-3.8.0.ebuild b/dev-java/icedtea/icedtea-3.8.0.ebuild index b4fcc1e0a37..01b3cb08623 100644 --- a/dev-java/icedtea/icedtea-3.8.0.ebuild +++ b/dev-java/icedtea/icedtea-3.8.0.ebuild @@ -294,14 +294,6 @@ src_configure() { zero_config="--enable-zero" fi - # Warn about potential problems with ccache enabled - if has ccache ${FEATURES}; then - ewarn 'ccache has been known to break IcedTea. Disable it before filing bugs.' - config+=" --enable-ccache" - else - config+=" --disable-ccache" - fi - # PaX breaks pch, bug #601016 if use pch && ! host-is-pax; then config+=" --enable-precompiled-headers" @@ -329,6 +321,7 @@ src_configure() { --docdir="${EPREFIX}/usr/share/doc/${PF}" \ --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \ --with-pkgversion="Gentoo ${PF}" \ + --disable-ccache \ --disable-downloading --disable-Werror --disable-tests \ --disable-systemtap-tests --enable-improved-font-rendering \ --enable-system-jpeg --enable-system-zlib \