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 DE290138247 for ; Sat, 18 Jan 2014 07:39:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64556E0E1E; Sat, 18 Jan 2014 07:39:30 +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 E7FE2E0E1E for ; Sat, 18 Jan 2014 07:39:24 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2AFDD33FA48 for ; Sat, 18 Jan 2014 07:39:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 443FB18731 for ; Sat, 18 Jan 2014 07:39:22 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1389866823.816d30d42cc1d7de65ca693de2ab3c43ac7c3798.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/openmpi/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/openmpi/openmpi-1.7.3.ebuild X-VCS-Directories: sys-cluster/openmpi/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 816d30d42cc1d7de65ca693de2ab3c43ac7c3798 X-VCS-Branch: master Date: Sat, 18 Jan 2014 07:39:22 +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: b761aa06-22e9-4926-96f8-f61e5728baca X-Archives-Hash: 39dcda9ac52975645e5453d33e0bb4ae commit: 816d30d42cc1d7de65ca693de2ab3c43ac7c3798 Author: Andreas Schäfer gmx de> AuthorDate: Thu Jan 16 10:07:03 2014 +0000 Commit: Justin Lecher gentoo org> CommitDate: Thu Jan 16 10:07:03 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=816d30d4 removed superfluous die commands after emake --- sys-cluster/openmpi/openmpi-1.7.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-cluster/openmpi/openmpi-1.7.3.ebuild b/sys-cluster/openmpi/openmpi-1.7.3.ebuild index 7b028cc..05dcafa 100644 --- a/sys-cluster/openmpi/openmpi-1.7.3.ebuild +++ b/sys-cluster/openmpi/openmpi-1.7.3.ebuild @@ -142,7 +142,7 @@ src_configure() { } src_install () { - emake DESTDIR="${D}" install || die "make install failed" + emake DESTDIR="${D}" install # From USE=vt see #359917 rm "${ED}"/$(mpi_root)/usr/share/libtool &> /dev/null # Avoid collisions with libevent @@ -155,5 +155,5 @@ src_test() { # Doesn't work with the default src_test as the dry run (-n) fails. # Do not override malloc during build. Works around #462602 - emake -j1 check || die "emake check failed" + emake -j1 check }