diff options
author | Sam James <sam@gentoo.org> | 2022-12-03 05:07:43 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-03 06:06:08 +0000 |
commit | 804adb0c1765b8cc1a17fa4678febe59668c17dd (patch) | |
tree | b9a2842a809ac005fffa90eacbea9d4a2f56a974 /sci-mathematics | |
parent | sci-mathematics/unuran: use HTTPS (diff) | |
download | gentoo-804adb0c1765b8cc1a17fa4678febe59668c17dd.tar.gz gentoo-804adb0c1765b8cc1a17fa4678febe59668c17dd.tar.bz2 gentoo-804adb0c1765b8cc1a17fa4678febe59668c17dd.zip |
sci-mathematics/rngstreams: workaround configure w/ non-bash
Closes: https://bugs.gentoo.org/818532
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild | 5 |
1 files 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() { |