commit: 804adb0c1765b8cc1a17fa4678febe59668c17dd Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Dec 3 05:07:43 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Dec 3 06:06:08 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=804adb0c
sci-mathematics/rngstreams: workaround configure w/ non-bash Closes: https://bugs.gentoo.org/818532 Signed-off-by: Sam James <sam <AT> gentoo.org> sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild b/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild index cf74c8bf763f..9862255db855 100644 --- a/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild +++ b/sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -15,7 +15,8 @@ KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" IUSE="doc examples" my_src_configure() { - econf --enable-shared --disable-static + # bash for bug #818532 + CONFIG_SHELL="${BROOT}"/bin/bash econf --enable-shared --disable-static } my_src_install_all() {
