From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1E9AA1384C1 for ; Mon, 31 Aug 2015 22:14:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 355A8142C7; Mon, 31 Aug 2015 22:14:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8BF54142C7 for ; Mon, 31 Aug 2015 22:14:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDE7B3408EA for ; Mon, 31 Aug 2015 22:14:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 12F2B180 for ; Mon, 31 Aug 2015 22:14:07 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1441059223.3eba4a7d03ebd38bb96bc486fa8a972cefb3bc73.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/e2tools/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/e2tools/e2tools-0.0.16.ebuild X-VCS-Directories: sys-fs/e2tools/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 3eba4a7d03ebd38bb96bc486fa8a972cefb3bc73 X-VCS-Branch: master Date: Mon, 31 Aug 2015 22:14:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2f947337-262a-4a83-8c88-f54b5b79fb8a X-Archives-Hash: 03c8d8bfda2e9414534ebbf339377a22 commit: 3eba4a7d03ebd38bb96bc486fa8a972cefb3bc73 Author: Mike Frysinger gentoo org> AuthorDate: Mon Aug 31 22:12:56 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Aug 31 22:13:43 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eba4a7d sys-fs/e2tools: set up a sane default CC The ancient autoconf defaults to `gcc` otherwise. sys-fs/e2tools/e2tools-0.0.16.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild b/sys-fs/e2tools/e2tools-0.0.16.ebuild index 081fb97..052ef63 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 }