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 7596F1384C1 for ; Mon, 31 Aug 2015 22:14:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4191C142CC; 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 974DE142CC for ; Mon, 31 Aug 2015 22:14:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C6B1A3408BC 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 F40BA17A for ; Mon, 31 Aug 2015 22:14:06 +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.0ed68557c5e4d294f6c31d85aa61475db745c7d4.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: 0ed68557c5e4d294f6c31d85aa61475db745c7d4 X-VCS-Branch: master Date: Mon, 31 Aug 2015 22:14:06 +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: 82c46690-0987-4a48-a9bb-93db1c3aadec X-Archives-Hash: 2e35a0f1b2863baf0a96e0a07a831cca commit: 0ed68557c5e4d294f6c31d85aa61475db745c7d4 Author: Mike Frysinger gentoo org> AuthorDate: Mon Aug 31 22:12:20 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=0ed68557 sys-fs/e2tools: fix building when /bin/sh is not bash sys-fs/e2tools/e2tools-0.0.16.ebuild | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sys-fs/e2tools/e2tools-0.0.16.ebuild b/sys-fs/e2tools/e2tools-0.0.16.ebuild index c8ee31d..081fb97 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 +}