Gentoo Archives: gentoo-commits

From: Mike Frysinger <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/e2tools/
Date: Mon, 31 Aug 2015 22:14:28
Message-Id: 1441059223.0ed68557c5e4d294f6c31d85aa61475db745c7d4.vapier@gentoo
1 commit: 0ed68557c5e4d294f6c31d85aa61475db745c7d4
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 22:12:20 2015 +0000
4 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 31 22:13:43 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed68557
7
8 sys-fs/e2tools: fix building when /bin/sh is not bash
9
10 sys-fs/e2tools/e2tools-0.0.16.ebuild | 6 ++++++
11 1 file changed, 6 insertions(+)
12
13 diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild b/sys-fs/e2tools/e2tools-0.0.16.ebuild
14 index c8ee31d..081fb97 100644
15 --- a/sys-fs/e2tools/e2tools-0.0.16.ebuild
16 +++ b/sys-fs/e2tools/e2tools-0.0.16.ebuild
17 @@ -20,3 +20,9 @@ RDEPEND="${DEPEND}"
18 src_prepare() {
19 sed -i '/e2cp_LDADD/s:-L@[^@]*@::' Makefile.in || die
20 }
21 +
22 +src_configure() {
23 + # The configure script is ancient.
24 + export CONFIG_SHELL="/bin/bash"
25 + default
26 +}