From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 434AD58973 for ; Sun, 17 Jan 2016 10:05:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 612DF21C040; Sun, 17 Jan 2016 10:05:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6BDDE086D for ; Sun, 17 Jan 2016 10:05:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0791534096F for ; Sun, 17 Jan 2016 10:05:06 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE254EEF for ; Sun, 17 Jan 2016 10:05:02 +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: <1453025081.8a574293f723db5bca4f2823ffb333d6b32b8c3e.kensington@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/cmake-utils.eclass X-VCS-Directories: eclass/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 8a574293f723db5bca4f2823ffb333d6b32b8c3e X-VCS-Branch: master Date: Sun, 17 Jan 2016 10:05:02 +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: b5984a8d-c509-42a7-a1c5-356d8c76cc58 X-Archives-Hash: be544c9f8ca3cf24ebee01f0e7e42c8e commit: 8a574293f723db5bca4f2823ffb333d6b32b8c3e Author: Michael Palimaka gentoo org> AuthorDate: Sun Jan 17 10:04:41 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jan 17 10:04:41 2016 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8a574293 cmake-utils.eclass: simplify eclass/cmake-utils.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index d0df4a2..5910360 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -128,7 +128,7 @@ case ${WANT_CMAKE} in always) ;; *) - ! has "${EAPI:-0}" 2 3 4 5 && die "WANT_CMAKE is banned in EAPI 6 and later" + has "${EAPI:-0}" 2 3 4 5 || die "WANT_CMAKE is banned in EAPI 6 and later" IUSE+=" ${WANT_CMAKE}" CMAKEDEPEND+="${WANT_CMAKE}? ( " ;;