commit: ce51905e1f186f8c0cae84d83a632a1daeca5223 Author: Alfred Wingate <parona <AT> protonmail <DOT> com> AuthorDate: Tue Oct 28 14:45:39 2025 +0000 Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org> CommitDate: Tue Nov 11 19:24:01 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce51905e
gnustep-base.eclass: pass econf arguments Also drop the useless || die Signed-off-by: Alfred Wingate <parona <AT> protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44437 Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org> 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 }
