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 29B43138334 for ; Wed, 24 Jul 2019 10:07:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06D65E0636; Wed, 24 Jul 2019 10:07:53 +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 C48F9E0636 for ; Wed, 24 Jul 2019 10:07:52 +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 57796348614 for ; Wed, 24 Jul 2019 10:07:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C11705E4 for ; Wed, 24 Jul 2019 10:07:48 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1563962780.abfedf55c98ff501e8c924646ea91ed315a0c71e.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/lvm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/lvm2/lvm2-2.02.183.ebuild sys-fs/lvm2/lvm2-2.02.184-r4.ebuild sys-fs/lvm2/lvm2-2.02.185.ebuild sys-fs/lvm2/lvm2-2.03.05.ebuild X-VCS-Directories: sys-fs/lvm2/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: abfedf55c98ff501e8c924646ea91ed315a0c71e X-VCS-Branch: master Date: Wed, 24 Jul 2019 10:07:48 +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: ea69ce39-9f71-4c4d-802c-bfa4c5fa0c88 X-Archives-Hash: 76f403f90749f100f18ecb8970ba8169 commit: abfedf55c98ff501e8c924646ea91ed315a0c71e Author: Lars Wendler gentoo org> AuthorDate: Wed Jul 24 10:06:20 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Jul 24 10:06:20 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abfedf55 sys-fs/lvm2: use /bin/bash as CONFIG_SHELL Closes: https://bugs.gentoo.org/682404 Package-Manager: Portage-2.3.69, Repoman-2.3.16 Signed-off-by: Lars Wendler gentoo.org> sys-fs/lvm2/lvm2-2.02.183.ebuild | 3 +++ sys-fs/lvm2/lvm2-2.02.184-r4.ebuild | 3 +++ sys-fs/lvm2/lvm2-2.02.185.ebuild | 3 +++ sys-fs/lvm2/lvm2-2.03.05.ebuild | 3 +++ 4 files changed, 12 insertions(+) diff --git a/sys-fs/lvm2/lvm2-2.02.183.ebuild b/sys-fs/lvm2/lvm2-2.02.183.ebuild index 1b37eab4af3..595dd187372 100644 --- a/sys-fs/lvm2/lvm2-2.02.183.ebuild +++ b/sys-fs/lvm2/lvm2-2.02.183.ebuild @@ -180,6 +180,9 @@ src_configure() { --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" CLDFLAGS="${LDFLAGS}" ) + # Hard-wire this to bash as some shells (dash) don't know + # "-o pipefail" #682404 + CONFIG_SHELL="/bin/bash" \ econf "${myeconfargs[@]}" } diff --git a/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild b/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild index 30771d99b7c..bfe82c27d5d 100644 --- a/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild +++ b/sys-fs/lvm2/lvm2-2.02.184-r4.ebuild @@ -185,6 +185,9 @@ src_configure() { --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" CLDFLAGS="${LDFLAGS}" ) + # Hard-wire this to bash as some shells (dash) don't know + # "-o pipefail" #682404 + CONFIG_SHELL="/bin/bash" \ econf "${myeconfargs[@]}" } diff --git a/sys-fs/lvm2/lvm2-2.02.185.ebuild b/sys-fs/lvm2/lvm2-2.02.185.ebuild index 2912f483299..812f84d2b65 100644 --- a/sys-fs/lvm2/lvm2-2.02.185.ebuild +++ b/sys-fs/lvm2/lvm2-2.02.185.ebuild @@ -188,6 +188,9 @@ src_configure() { --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" CLDFLAGS="${LDFLAGS}" ) + # Hard-wire this to bash as some shells (dash) don't know + # "-o pipefail" #682404 + CONFIG_SHELL="/bin/bash" \ econf "${myeconfargs[@]}" } diff --git a/sys-fs/lvm2/lvm2-2.03.05.ebuild b/sys-fs/lvm2/lvm2-2.03.05.ebuild index d4cb83b032c..12b13a5e36e 100644 --- a/sys-fs/lvm2/lvm2-2.03.05.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.05.ebuild @@ -177,6 +177,9 @@ src_configure() { --with-systemdsystemunitdir="$(systemd_get_systemunitdir)" CLDFLAGS="${LDFLAGS}" ) + # Hard-wire this to bash as some shells (dash) don't know + # "-o pipefail" #682404 + CONFIG_SHELL="/bin/bash" \ econf "${myeconfargs[@]}" }