From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DF476158020 for ; Sat, 3 Dec 2022 06:06:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C1AEDE0E8C; Sat, 3 Dec 2022 06:06:25 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ACE9AE0E8B for ; Sat, 3 Dec 2022 06:06:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BB175340DBB for ; Sat, 3 Dec 2022 06:06:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39D73779 for ; Sat, 3 Dec 2022 06:06:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1670047568.804adb0c1765b8cc1a17fa4678febe59668c17dd.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/rngstreams/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/rngstreams/rngstreams-1.0.1.ebuild X-VCS-Directories: sci-mathematics/rngstreams/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 804adb0c1765b8cc1a17fa4678febe59668c17dd X-VCS-Branch: master Date: Sat, 3 Dec 2022 06:06:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3fd37c9b-72a5-4591-937d-1253a7779bef X-Archives-Hash: e44d4411fcc23bfe1c74f5c241aff9a0 commit: 804adb0c1765b8cc1a17fa4678febe59668c17dd Author: Sam James gentoo org> AuthorDate: Sat Dec 3 05:07:43 2022 +0000 Commit: Sam James gentoo 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 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() {