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 A1470138350 for ; Thu, 2 Apr 2020 00:55:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBB36E0BBA; Thu, 2 Apr 2020 00:55:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9FA1DE0BBA for ; Thu, 2 Apr 2020 00:55:44 +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 5B9EF34F926 for ; Thu, 2 Apr 2020 00:55:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0213178 for ; Thu, 2 Apr 2020 00:55:41 +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: <1585788432.1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: eclass/ X-VCS-Repository: proj/kde X-VCS-Files: eclass/ecm.eclass X-VCS-Directories: eclass/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1 X-VCS-Branch: master Date: Thu, 2 Apr 2020 00:55:41 +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: b3f294fe-ab26-4ef0-a514-cdf06b4d09aa X-Archives-Hash: 65c0006f115dbebec0dafa6ceb34b890 commit: 1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Mar 31 11:30:02 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Apr 2 00:47:12 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=1f4a58b2 ecm.eclass: Drop references to -DNDEBUG of cmake.eclass Flag has been removed from there. Signed-off-by: Andreas Sturmlechner gentoo.org> eclass/ecm.eclass | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/eclass/ecm.eclass b/eclass/ecm.eclass index dbb8cc7a81..12b31e4ef3 100644 --- a/eclass/ecm.eclass +++ b/eclass/ecm.eclass @@ -74,8 +74,8 @@ EXPORT_FUNCTIONS pkg_setup src_prepare src_configure src_test pkg_preinst pkg_po # @ECLASS-VARIABLE: ECM_DEBUG # @DESCRIPTION: -# Add "debug" to IUSE. If !debug, add -DNDEBUG (via cmake_src_configure) -# and -DQT_NO_DEBUG to CPPFLAGS. If set to "false", do nothing. +# Add "debug" to IUSE. If !debug, add -DQT_NO_DEBUG to CPPFLAGS. If set to +# "false", do nothing. : ${ECM_DEBUG:=true} # @ECLASS-VARIABLE: ECM_DESIGNERPLUGIN @@ -476,7 +476,6 @@ ecm_src_prepare() { ecm_src_configure() { debug-print-function ${FUNCNAME} "$@" - # we rely on cmake.eclass to append -DNDEBUG too if in_iuse debug && ! use debug; then append-cppflags -DQT_NO_DEBUG fi