commit: 0ed68557c5e4d294f6c31d85aa61475db745c7d4
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 31 22:12:20 2015 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Mon Aug 31 22:13:43 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ed68557
sys-fs/e2tools: fix building when /bin/sh is not bash
sys-fs/e2tools/e2tools-0.0.16.ebuild | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild
b/sys-fs/e2tools/e2tools-0.0.16.ebuild
index c8ee31d..081fb97 100644
--- a/sys-fs/e2tools/e2tools-0.0.16.ebuild
+++ b/sys-fs/e2tools/e2tools-0.0.16.ebuild
@@ -20,3 +20,9 @@ RDEPEND="${DEPEND}"
src_prepare() {
sed -i '/e2cp_LDADD/s:-L@[^@]*@::' Makefile.in || die
}
+
+src_configure() {
+ # The configure script is ancient.
+ export CONFIG_SHELL="/bin/bash"
+ default
+}