diff options
author | Sam James <sam@gentoo.org> | 2022-02-18 04:49:19 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-18 04:49:19 +0000 |
commit | 2c7436211b06251926ee7ae1e15dc0b79d4f4666 (patch) | |
tree | 6cf1222f9778c37d7c0e9d84adc1e760530a6a31 /app-containers/crun | |
parent | net-fs/samba: Stabilize 4.15.3-r2 ppc64, #828680 (diff) | |
download | gentoo-2c7436211b06251926ee7ae1e15dc0b79d4f4666.tar.gz gentoo-2c7436211b06251926ee7ae1e15dc0b79d4f4666.tar.bz2 gentoo-2c7436211b06251926ee7ae1e15dc0b79d4f4666.zip |
app-containers/crun: workaround bashism in configure
Until patch is merged.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-containers/crun')
-rw-r--r-- | app-containers/crun/crun-1.4.2.ebuild | 6 |
1 files 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() { |