From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CAB08138330 for ; Wed, 7 Sep 2016 12:43:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2ACCFE0B80; Wed, 7 Sep 2016 12:43:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5C8AE0B80 for ; Wed, 7 Sep 2016 12:43:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 677593408EC for ; Wed, 7 Sep 2016 12:43:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3F52D2465 for ; Wed, 7 Sep 2016 12:43:18 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1473252194.5fbb77dd36d69589eeb5291b406665ea2cf29856.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/joe/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/joe/joe-4.3-r1.ebuild X-VCS-Directories: app-editors/joe/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 5fbb77dd36d69589eeb5291b406665ea2cf29856 X-VCS-Branch: master Date: Wed, 7 Sep 2016 12:43:18 +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: 9bdfb9f8-ecec-4a57-89c6-21b3280edc49 X-Archives-Hash: e723d1098a518a5ccc515bb71e36742a commit: 5fbb77dd36d69589eeb5291b406665ea2cf29856 Author: Lars Wendler gentoo org> AuthorDate: Wed Sep 7 12:43:02 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Wed Sep 7 12:43:14 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fbb77dd app-editors/joe: Fixed eautoreconf with USE="xterm". Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler gentoo.org> app-editors/joe/joe-4.3-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-editors/joe/joe-4.3-r1.ebuild b/app-editors/joe/joe-4.3-r1.ebuild index 446ac94..170a0d7 100644 --- a/app-editors/joe/joe-4.3-r1.ebuild +++ b/app-editors/joe/joe-4.3-r1.ebuild @@ -27,11 +27,12 @@ src_prepare() { default # Enable xterm mouse support in the rc files if use xterm; then - cd "${S}"/rc || die + pushd "${S}"/rc &>/dev/null || die local i for i in *rc*.in; do sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die done + popd &>/dev/null fi eautoreconf }