diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-08-31 18:12:20 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-08-31 18:13:43 -0400 |
commit | 0ed68557c5e4d294f6c31d85aa61475db745c7d4 (patch) | |
tree | 4ba82e9b914e16b13715fed5e692225c791fb503 /sys-fs/e2tools | |
parent | sys-fs/e2tools: update to EAPI=5 (diff) | |
download | gentoo-0ed68557c5e4d294f6c31d85aa61475db745c7d4.tar.gz gentoo-0ed68557c5e4d294f6c31d85aa61475db745c7d4.tar.bz2 gentoo-0ed68557c5e4d294f6c31d85aa61475db745c7d4.zip |
sys-fs/e2tools: fix building when /bin/sh is not bash
Diffstat (limited to 'sys-fs/e2tools')
-rw-r--r-- | sys-fs/e2tools/e2tools-0.0.16.ebuild | 6 |
1 files changed, 6 insertions, 0 deletions
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 +} |