diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2024-02-08 12:39:37 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2024-02-08 12:46:00 -0500 |
commit | 3c153671e9a3f3a155ee7790daa1cbdc7e158efb (patch) | |
tree | 18ea14f4076cb65f34835938024dc5c0376882f8 /app-emulation | |
parent | app-emulation/vice: drop 3.7.1 (diff) | |
download | gentoo-3c153671e9a3f3a155ee7790daa1cbdc7e158efb.tar.gz gentoo-3c153671e9a3f3a155ee7790daa1cbdc7e158efb.tar.bz2 gentoo-3c153671e9a3f3a155ee7790daa1cbdc7e158efb.zip |
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 <ionen@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/vice/vice-3.8-r1.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
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() { |