commit: 052f710386235343710acd485929de825869f3b4 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Wed Aug 20 08:06:30 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Wed Aug 20 08:07:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=052f7103
sys-apps/edac-utils: drop USE=debug It does two things: 1) define -DNDEBUG if off, which is used by list.c; 2) sets -pedantic -Werror Given edac-utils is dead, I doubt 1) is that important, and 2) is causing issues, drop it. Also, cleanup now-redundant src_configure as w/ EAPI 8, we get --disable-static for free. Closes: https://bugs.gentoo.org/888938 Closes: https://bugs.gentoo.org/898544 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-apps/edac-utils/edac-utils-0.18-r2.ebuild | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild b/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild index a23ea1dcd4f7..86e50bf42dee 100644 --- a/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild +++ b/sys-apps/edac-utils/edac-utils-0.18-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -12,7 +12,6 @@ SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ~arm64" -IUSE="debug" DEPEND="sys-fs/sysfsutils" RDEPEND="${DEPEND} @@ -37,12 +36,6 @@ src_prepare() { eautoreconf } -src_configure() { - econf \ - --disable-static \ - $(use_enable debug) -} - src_install() { default
