From ce51905e1f186f8c0cae84d83a632a1daeca5223 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Tue, 28 Oct 2025 16:45:39 +0200 Subject: [PATCH] gnustep-base.eclass: pass econf arguments Also drop the useless || die Signed-off-by: Alfred Wingate Part-of: https://github.com/gentoo/gentoo/pull/44437 Signed-off-by: Bernard Cafarelli --- eclass/gnustep-base.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/gnustep-base.eclass b/eclass/gnustep-base.eclass index 00a3a981feb0..7505d791fc4b 100644 --- a/eclass/gnustep-base.eclass +++ b/eclass/gnustep-base.eclass @@ -63,7 +63,7 @@ gnustep-base_src_prepare() { gnustep-base_src_configure() { egnustep_env if [[ -x ./configure ]] ; then - econf || die "configure failed" + econf ${*} fi }