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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0DEED15808B for ; Fri, 18 Feb 2022 04:50:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59853E0824; Fri, 18 Feb 2022 04:50:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3E731E0824 for ; Fri, 18 Feb 2022 04:50:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3905E343489 for ; Fri, 18 Feb 2022 04:50:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C47CD3 for ; Fri, 18 Feb 2022 04:50:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1645159759.2c7436211b06251926ee7ae1e15dc0b79d4f4666.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-containers/crun/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-containers/crun/crun-1.4.2.ebuild X-VCS-Directories: app-containers/crun/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2c7436211b06251926ee7ae1e15dc0b79d4f4666 X-VCS-Branch: master Date: Fri, 18 Feb 2022 04:50:28 +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: 467c5a45-b692-4893-af93-45cb5dc23d05 X-Archives-Hash: e512e5cc78af5b87c8e3f28056bfd9e4 commit: 2c7436211b06251926ee7ae1e15dc0b79d4f4666 Author: Sam James gentoo org> AuthorDate: Fri Feb 18 04:49:19 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Feb 18 04:49:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c743621 app-containers/crun: workaround bashism in configure Until patch is merged. Signed-off-by: Sam James gentoo.org> app-containers/crun/crun-1.4.2.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-containers/crun/crun-1.4.2.ebuild b/app-containers/crun/crun-1.4.2.ebuild index 5de80d420e29..7c6b28ed5bef 100644 --- a/app-containers/crun/crun-1.4.2.ebuild +++ b/app-containers/crun/crun-1.4.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 2019-2021 Gentoo Authors +# Copyright 2019-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -45,7 +45,9 @@ src_configure() { $(usex static-libs '--enable-shared --enable-static' '--enable-shared --disable-static' '' '') ) - econf "${myeconfargs[@]}" + # Bashism workaround for https://github.com/containers/crun/pull/880 + # Drop once fixed in a release. + CONFIG_SHELL="${BROOT}/bin/bash" econf "${myeconfargs[@]}" } src_compile() {