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 1CA9B13832E for ; Sat, 6 Aug 2016 15:24:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E4A521C012; Sat, 6 Aug 2016 15:24:52 +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 048F521C012 for ; Sat, 6 Aug 2016 15:24:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C6D43340BFA for ; Sat, 6 Aug 2016 15:24:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 012117D6 for ; Sat, 6 Aug 2016 15:24:49 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1470497077.d2f625ffc5348d8103139f32b84bac9a692a1b51.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-base/kdelibs/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-base/kdelibs/kdelibs-4.14.22.ebuild X-VCS-Directories: kde-base/kdelibs/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: d2f625ffc5348d8103139f32b84bac9a692a1b51 X-VCS-Branch: master Date: Sat, 6 Aug 2016 15:24:49 +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: 0ec2eb30-2b0a-484c-bd55-794c626796ec X-Archives-Hash: 2179509e58200903ed91f657df685db2 commit: d2f625ffc5348d8103139f32b84bac9a692a1b51 Author: Michael Palimaka gentoo org> AuthorDate: Sat Aug 6 15:24:24 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Aug 6 15:24:37 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2f625ff kde-base/kdelibs: avoid GCC version check failure with clang Package-Manager: portage-2.3.0 kde-base/kdelibs/kdelibs-4.14.22.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-base/kdelibs/kdelibs-4.14.22.ebuild b/kde-base/kdelibs/kdelibs-4.14.22.ebuild index c2c1f1c..f0fcefd 100644 --- a/kde-base/kdelibs/kdelibs-4.14.22.ebuild +++ b/kde-base/kdelibs/kdelibs-4.14.22.ebuild @@ -139,7 +139,7 @@ PATCHES=( pkg_pretend() { if [[ ${MERGE_TYPE} != binary ]]; then - [[ $(gcc-major-version) -lt 4 ]] || \ + tc-is-gcc && [[ $(gcc-major-version) -lt 4 ]] || \ ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -le 3 ]] ) \ && die "Sorry, but gcc-4.3 and earlier won't work for KDE SC 4.6 (see bug #354837)." fi