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:25
Message-Id: 1441059223.3eba4a7d03ebd38bb96bc486fa8a972cefb3bc73.vapier@gentoo
1 commit: 3eba4a7d03ebd38bb96bc486fa8a972cefb3bc73
2 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 31 22:12:56 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=3eba4a7d
7
8 sys-fs/e2tools: set up a sane default CC
9
10 The ancient autoconf defaults to `gcc` otherwise.
11
12 sys-fs/e2tools/e2tools-0.0.16.ebuild | 3 +++
13 1 file changed, 3 insertions(+)
14
15 diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild b/sys-fs/e2tools/e2tools-0.0.16.ebuild
16 index 081fb97..052ef63 100644
17 --- a/sys-fs/e2tools/e2tools-0.0.16.ebuild
18 +++ b/sys-fs/e2tools/e2tools-0.0.16.ebuild
19 @@ -4,6 +4,8 @@
20
21 EAPI="5"
22
23 +inherit toolchain-funcs
24 +
25 DESCRIPTION="utilities to read, write, and manipulate files in an ext2/ext3 filesystem"
26 HOMEPAGE="http://home.earthlink.net/~k_sheff/sw/e2tools/"
27 SRC_URI="http://home.earthlink.net/~k_sheff/sw/${PN}/${P}.tar.gz"
28 @@ -24,5 +26,6 @@ src_prepare() {
29 src_configure() {
30 # The configure script is ancient.
31 export CONFIG_SHELL="/bin/bash"
32 + tc-export CC
33 default
34 }