From: Mike Frysinger Date: Mon, 31 Aug 2015 22:12:20 +0000 (-0400) Subject: sys-fs/e2tools: fix building when /bin/sh is not bash X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0ed68557c5e4d294f6c31d85aa61475db745c7d4;p=gentoo.git sys-fs/e2tools: fix building when /bin/sh is not bash --- diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild b/sys-fs/e2tools/e2tools-0.0.16.ebuild index c8ee31d713df..081fb974fa41 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 +}