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 9767F138346 for ; Sun, 5 Jan 2020 14:15:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7D4FE0824; Sun, 5 Jan 2020 14:15:33 +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 AC7FBE0824 for ; Sun, 5 Jan 2020 14:15:33 +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 6C3A434DC59 for ; Sun, 5 Jan 2020 14:15:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ECDD3D for ; Sun, 5 Jan 2020 14:15:30 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1578233607.0215336cf58a5a6460b8d7a31301928a4116a2f0.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/cmake.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0215336cf58a5a6460b8d7a31301928a4116a2f0 X-VCS-Branch: master Date: Sun, 5 Jan 2020 14:15:30 +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: 4e6ea9c8-8e3a-46ec-8efb-95e938f082f6 X-Archives-Hash: 6fc96a40e7c03e6ce0866de12eff3f2d commit: 0215336cf58a5a6460b8d7a31301928a4116a2f0 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 5 14:13:27 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 5 14:13:27 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=0215336c cmake.eclass: Fix CMAKE_VERBOSE logic Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/cmake.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclass/cmake.eclass b/eclass/cmake.eclass index bd78401163..1d1e701a6c 100644 --- a/eclass/cmake.eclass +++ b/eclass/cmake.eclass @@ -569,8 +569,8 @@ cmake_build() { emake) [[ -e Makefile ]] || die "Makefile not found. Error during configure stage." case ${CMAKE_VERBOSE} in - OFF) emake VERBOSE=1 "$@" ;; - *) emake "$@" ;; + OFF) emake "$@" ;; + *) emake VERBOSE=1 "$@" ;; esac ;; ninja)