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 1FA041382C5 for ; Wed, 19 May 2021 22:41:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 659FDE0841; Wed, 19 May 2021 22:41:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 498C1E0841 for ; Wed, 19 May 2021 22:41:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 B7C15340DFB for ; Wed, 19 May 2021 22:41:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA369581 for ; Wed, 19 May 2021 22:41:49 +0000 (UTC) From: "Andrew Savchenko" 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" Message-ID: <1621464026.9032b73ff8422d412dc33a05f9cdabe889bb003f.bircoph@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/fastjet/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/fastjet/fastjet-3.0.6-r2.ebuild X-VCS-Directories: sci-physics/fastjet/ X-VCS-Committer: bircoph X-VCS-Committer-Name: Andrew Savchenko X-VCS-Revision: 9032b73ff8422d412dc33a05f9cdabe889bb003f X-VCS-Branch: master Date: Wed, 19 May 2021 22:41: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: 4adb0bef-485e-4ac5-a900-98e20f9a877d X-Archives-Hash: 836fe8199297e0f15eee39deed73501f commit: 9032b73ff8422d412dc33a05f9cdabe889bb003f Author: Andrew Savchenko gentoo org> AuthorDate: Wed May 19 22:40:26 2021 +0000 Commit: Andrew Savchenko gentoo org> CommitDate: Wed May 19 22:40:26 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9032b73f sci-physics/fastjet: fix build with dash as /bin/sh configure.ac is full of bash-specific code, so request /bin/bash as configure shell explicitly. Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Andrew Savchenko gentoo.org> sci-physics/fastjet/fastjet-3.0.6-r2.ebuild | 1 + 1 file changed, 1 insertion(+) diff --git a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild index c6472206f84..59084ef062c 100644 --- a/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild +++ b/sci-physics/fastjet/fastjet-3.0.6-r2.ebuild @@ -33,6 +33,7 @@ src_configure() { use cgal && \ has_version 'sci-mathematics/cgal[gmp]' && append-libs -lgmp + CONFIG_SHELL="${EPREFIX}/bin/bash" \ econf \ --disable-static \ $(use_enable cgal) \