commit: 8d3182553b151bcaf9010fae4dcc091f18096839 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> AuthorDate: Tue Apr 7 22:39:11 2020 +0000 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org> CommitDate: Tue Apr 7 22:39:11 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=8d318255
gkbuilds/lvm: Force CONFIG_SHELL=bash Bug: https://bugs.gentoo.org/716496 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org> gkbuilds/lvm.gkbuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gkbuilds/lvm.gkbuild b/gkbuilds/lvm.gkbuild index 9cedead..3af06e6 100644 --- a/gkbuilds/lvm.gkbuild +++ b/gkbuilds/lvm.gkbuild @@ -34,6 +34,9 @@ src_configure() { myconf+=( --with-cache-${texec}=/usr/sbin/cache_${texec} ) done + # Hard-wire this to bash as some shells (dash) don't know + # "-o pipefail" #682404, #716496 + CONFIG_SHELL="/bin/bash" \ gkconf "${myconf[@]}" }
