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 B7DA5138BD5 for ; Mon, 24 Oct 2016 12:30:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF685E07FD; Mon, 24 Oct 2016 12:30:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C89CBE07FD for ; Mon, 24 Oct 2016 12:30:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60CE63412BC for ; Mon, 24 Oct 2016 12:30:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93F91304 for ; Mon, 24 Oct 2016 12:30:11 +0000 (UTC) From: "Benda XU" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Benda XU" Message-ID: <1477312189.c9eefea43ef844ba33fff731b2ba6c48e9133fcd.heroxbd@gentoo> Subject: [gentoo-commits] proj/android:master commit in: eclass/ X-VCS-Repository: proj/android X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: heroxbd X-VCS-Committer-Name: Benda XU X-VCS-Revision: c9eefea43ef844ba33fff731b2ba6c48e9133fcd X-VCS-Branch: master Date: Mon, 24 Oct 2016 12:30:11 +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-Archives-Salt: eade061a-623c-4477-b042-f8d07348b235 X-Archives-Hash: f6b2da71a52c0aaad346d241ffe7739e commit: c9eefea43ef844ba33fff731b2ba6c48e9133fcd Author: Benda Xu gentoo org> AuthorDate: Mon Oct 24 12:29:49 2016 +0000 Commit: Benda XU gentoo org> CommitDate: Mon Oct 24 12:29:49 2016 +0000 URL: https://gitweb.gentoo.org/proj/android.git/commit/?id=c9eefea4 toolchain.eclass: prefixify the config shell. eclass/toolchain.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 0d0fac9..27ff44a 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1251,7 +1251,7 @@ toolchain_src_configure() { echo "${S}"/configure "${confgcc[@]}" # Older gcc versions did not detect bash and re-exec itself, so force the # use of bash. Newer ones will auto-detect, but this is not harmeful. - CONFIG_SHELL="/bin/bash" \ + CONFIG_SHELL="${EPREFIX}/bin/bash" \ bash "${S}"/configure "${confgcc[@]}" || die "failed to run configure" # return to whatever directory we were in before