From 3c153671e9a3f3a155ee7790daa1cbdc7e158efb Mon Sep 17 00:00:00 2001 From: Ionen Wolkens Date: Thu, 8 Feb 2024 12:39:37 -0500 Subject: app-emulation/vice: force bash during src_compile No need for a revbump, no real issue beside silencing errors. Only needed for src_compile's #!/bin/bash scripts called using SHELL, nonbash is fine for long'ish multibuild ./configure runs or install. Closes: https://bugs.gentoo.org/924116 Signed-off-by: Ionen Wolkens --- app-emulation/vice/vice-3.8-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-emulation/vice/vice-3.8-r1.ebuild b/app-emulation/vice/vice-3.8-r1.ebuild index 36f76ca6a6e3..3a39bda48be4 100644 --- a/app-emulation/vice/vice-3.8-r1.ebuild +++ b/app-emulation/vice/vice-3.8-r1.ebuild @@ -157,7 +157,8 @@ multibuild_src_configure() { } src_compile() { - multibuild_foreach_variant run_in_build_dir emake + # bug #924116 wrt SHELL + multibuild_foreach_variant run_in_build_dir emake SHELL="${BASH}" } src_install() { -- cgit v1.2.3-65-gdbad