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 B235713888F for ; Thu, 8 Oct 2015 03:56:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 364B7E07F5; Thu, 8 Oct 2015 03:56:07 +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 D8E4BE07F5 for ; Thu, 8 Oct 2015 03:56:06 +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 A292F340634 for ; Thu, 8 Oct 2015 03:56:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E9763B72 for ; Thu, 8 Oct 2015 03:56:02 +0000 (UTC) From: "Christoph Mende" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Mende" Message-ID: <1444276564.ce8e88bf55b38ef4e1b3cb8d0e15439fa90c1d3b.angelos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/rodent/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/rodent/rodent-5.3.16.3.ebuild X-VCS-Directories: x11-misc/rodent/ X-VCS-Committer: angelos X-VCS-Committer-Name: Christoph Mende X-VCS-Revision: ce8e88bf55b38ef4e1b3cb8d0e15439fa90c1d3b X-VCS-Branch: master Date: Thu, 8 Oct 2015 03:56:02 +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: 711f5b17-3316-46ff-bb59-2dabbd81074b X-Archives-Hash: f934d47a54774bb757ef0a60911a4b16 commit: ce8e88bf55b38ef4e1b3cb8d0e15439fa90c1d3b Author: Christoph Mende gentoo org> AuthorDate: Thu Oct 8 03:55:55 2015 +0000 Commit: Christoph Mende gentoo org> CommitDate: Thu Oct 8 03:56:04 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce8e88bf x11-misc/rodent: die when pushd/popd fails Package-Manager: portage-2.2.22 x11-misc/rodent/rodent-5.3.16.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-misc/rodent/rodent-5.3.16.3.ebuild b/x11-misc/rodent/rodent-5.3.16.3.ebuild index 02849b5..4204844 100644 --- a/x11-misc/rodent/rodent-5.3.16.3.ebuild +++ b/x11-misc/rodent/rodent-5.3.16.3.ebuild @@ -24,9 +24,9 @@ pkg_setup() { } src_prepare() { - pushd apps/rodent-pkg >/dev/null + pushd apps/rodent-pkg >/dev/null || die sed -i -e "/^install-data-hook/d" \ -e "/rm -f/d" Build/Makefile.am || die eautoreconf - popd >/dev/null + popd >/dev/null || die }