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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1D5241382C5 for ; Sat, 8 May 2021 18:46:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7834CE0886; Sat, 8 May 2021 18:46:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A8B7E0886 for ; Sat, 8 May 2021 18:46:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 52273340ECB for ; Sat, 8 May 2021 18:46:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 025B04D2 for ; Sat, 8 May 2021 18:46:49 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1620499597.13c680005d3b585a55860dc6e61578f213897926.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/boost-build/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/boost-build/boost-build-1.76.0.ebuild X-VCS-Directories: dev-util/boost-build/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 13c680005d3b585a55860dc6e61578f213897926 X-VCS-Branch: master Date: Sat, 8 May 2021 18:46:49 +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: bf3ba801-1856-4c8d-bad2-6228ca88959f X-Archives-Hash: 2c876b327bd4889cb9232c331c28b56e commit: 13c680005d3b585a55860dc6e61578f213897926 Author: Fabian Groffen gentoo org> AuthorDate: Sat May 8 18:44:57 2021 +0000 Commit: Fabian Groffen gentoo 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 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() {