commit: 13c680005d3b585a55860dc6e61578f213897926
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sat May 8 18:44:57 2021 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sat May 8 18:46:37 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c68000
dev-util/boost-build-1.76.0: run build.sh with a sane shell
In particular on some Prefix systems, /bin/sh might be AT&T 93t sh which
doesn't understand "local".
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
dev-util/boost-build/boost-build-1.76.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/boost-build/boost-build-1.76.0.ebuild
b/dev-util/boost-build/boost-build-1.76.0.ebuild
index efcd3d2b1a1..1ce39bc6c9c 100644
--- a/dev-util/boost-build/boost-build-1.76.0.ebuild
+++ b/dev-util/boost-build/boost-build-1.76.0.ebuild
@@ -45,7 +45,7 @@ src_configure() {
src_compile() {
cd engine || die
- ./build.sh cxx --cxx="$(tc-getCXX)" --cxxflags="${CXXFLAGS}" -d+2
--without-python || die "building bjam failed"
+ ${CONFIG_SHELL:-${BASH}} ./build.sh cxx --cxx="$(tc-getCXX)"
--cxxflags="${CXXFLAGS}" -d+2 --without-python || die "building bjam failed"
}
src_test() {