From: Mike Frysinger Date: Mon, 31 Aug 2015 22:12:56 +0000 (-0400) Subject: sys-fs/e2tools: set up a sane default CC X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3eba4a7d03ebd38bb96bc486fa8a972cefb3bc73;p=gentoo.git sys-fs/e2tools: set up a sane default CC The ancient autoconf defaults to `gcc` otherwise. --- diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild b/sys-fs/e2tools/e2tools-0.0.16.ebuild index 081fb974fa41..052ef631c0f7 100644 --- a/sys-fs/e2tools/e2tools-0.0.16.ebuild +++ b/sys-fs/e2tools/e2tools-0.0.16.ebuild @@ -4,6 +4,8 @@ EAPI="5" +inherit toolchain-funcs + DESCRIPTION="utilities to read, write, and manipulate files in an ext2/ext3 filesystem" HOMEPAGE="http://home.earthlink.net/~k_sheff/sw/e2tools/" SRC_URI="http://home.earthlink.net/~k_sheff/sw/${PN}/${P}.tar.gz" @@ -24,5 +26,6 @@ src_prepare() { src_configure() { # The configure script is ancient. export CONFIG_SHELL="/bin/bash" + tc-export CC default }