From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1285043-garchives=archives.gentoo.org@lists.gentoo.org> 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 6E3F61382C5 for <garchives@archives.gentoo.org>; Sun, 23 May 2021 13:29:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C066DE0863; Sun, 23 May 2021 13:29:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 A61C1E0863 for <gentoo-commits@lists.gentoo.org>; Sun, 23 May 2021 13:29:20 +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 95A93340D80 for <gentoo-commits@lists.gentoo.org>; Sun, 23 May 2021 13:29:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F071753 for <gentoo-commits@lists.gentoo.org>; Sun, 23 May 2021 13:29:18 +0000 (UTC) From: "Andrew Savchenko" <bircoph@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Savchenko" <bircoph@gentoo.org> Message-ID: <1621776534.746271db9aab2da22a7f0ba797ddc543c41ac62c.bircoph@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/lhapdf/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/lhapdf/lhapdf-6.2.3.ebuild sci-physics/lhapdf/lhapdf-6.3.0.ebuild X-VCS-Directories: sci-physics/lhapdf/ X-VCS-Committer: bircoph X-VCS-Committer-Name: Andrew Savchenko X-VCS-Revision: 746271db9aab2da22a7f0ba797ddc543c41ac62c X-VCS-Branch: master Date: Sun, 23 May 2021 13:29:18 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5e83a152-2859-4f59-b967-14517c4f4002 X-Archives-Hash: 7ba31533d3e7b2c11b1f6d8256b28063 commit: 746271db9aab2da22a7f0ba797ddc543c41ac62c Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org> AuthorDate: Sun May 23 13:06:08 2021 +0000 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org> CommitDate: Sun May 23 13:28:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=746271db sci-physics/lhapdf: fix build with /bin/sh != bash Request CONFIG_SHELL=/bin/bash explicitly, otherwise obscure configure problems may occur leading to a broken installation. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org> sci-physics/lhapdf/lhapdf-6.2.3.ebuild | 3 ++- sci-physics/lhapdf/lhapdf-6.3.0.ebuild | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sci-physics/lhapdf/lhapdf-6.2.3.ebuild b/sci-physics/lhapdf/lhapdf-6.2.3.ebuild index e67b0b741a9..03e30f85b39 100644 --- a/sci-physics/lhapdf/lhapdf-6.2.3.ebuild +++ b/sci-physics/lhapdf/lhapdf-6.2.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -37,6 +37,7 @@ BDEPEND=" S="${WORKDIR}/${MY_PF}" src_configure() { + CONFIG_SHELL="${EPREFIX}/bin/bash" \ econf \ --disable-static \ $(use_enable python) diff --git a/sci-physics/lhapdf/lhapdf-6.3.0.ebuild b/sci-physics/lhapdf/lhapdf-6.3.0.ebuild index 9fc01878697..30b859ffe8d 100644 --- a/sci-physics/lhapdf/lhapdf-6.3.0.ebuild +++ b/sci-physics/lhapdf/lhapdf-6.3.0.ebuild @@ -37,6 +37,7 @@ BDEPEND=" S="${WORKDIR}/${MY_PF}" src_configure() { + CONFIG_SHELL="${EPREFIX}/bin/bash" \ econf \ --disable-static \ $(use_enable python)