diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-03-31 13:30:02 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-04-02 02:47:12 +0200 |
commit | 1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1 (patch) | |
tree | 56386ad8288a5ccd9ff98e851736560542f13a9a /eclass | |
parent | cmake.eclass: do not append -DNDEBUG to CPPFLAGS (diff) | |
download | kde-1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1.tar.gz kde-1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1.tar.bz2 kde-1f4a58b2d53b1ae8d006be6fb53a491c5167a7c1.zip |
ecm.eclass: Drop references to -DNDEBUG of cmake.eclass
Flag has been removed from there.
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ecm.eclass | 5 |
1 files 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 |