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 6351C138200 for ; Tue, 2 Jul 2013 02:15:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4B8DE09B3; Tue, 2 Jul 2013 02:15:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 36B04E09B3 for ; Tue, 2 Jul 2013 02:15:53 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4A98A33DA22 for ; Tue, 2 Jul 2013 02:15:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8DB09E5460 for ; Tue, 2 Jul 2013 02:15:50 +0000 (UTC) From: "Justin Bronder" 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 Bronder" Message-ID: <1372731330.ad77dd63122d96dda3aaa2eb43e035b471923de1.jsbronder@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: eclass/ X-VCS-Repository: proj/sci X-VCS-Files: eclass/mpi.eclass X-VCS-Directories: eclass/ X-VCS-Committer: jsbronder X-VCS-Committer-Name: Justin Bronder X-VCS-Revision: ad77dd63122d96dda3aaa2eb43e035b471923de1 X-VCS-Branch: master Date: Tue, 2 Jul 2013 02:15:50 +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: 9dee65a8-e0de-4705-9124-90248233898c X-Archives-Hash: 23027d3a53d063679bd6946374d8c493 commit: ad77dd63122d96dda3aaa2eb43e035b471923de1 Author: Justin Bronder gentoo org> AuthorDate: Tue Jul 2 02:15:30 2013 +0000 Commit: Justin Bronder gentoo org> CommitDate: Tue Jul 2 02:15:30 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ad77dd63 Revert "workaround OpenMPI build issue #462602" This reverts commit 3114d456f07f612f87dfd403ab120819e913fcce. --- eclass/mpi.eclass | 9 --------- 1 file changed, 9 deletions(-) diff --git a/eclass/mpi.eclass b/eclass/mpi.eclass index 76addae..b411ae9 100644 --- a/eclass/mpi.eclass +++ b/eclass/mpi.eclass @@ -10,7 +10,6 @@ inherit multilib # @BLURB: Common functions for mpi-pkg.eclass and mpi-imp.eclass # History: -# 2013-07-01 (jsbronder): Workaround OpenMPI build issue #462602 # 2009-06-26 (jsbronder): Add ability to require common use flags. # Remove dep on eselect-mpi (it's in sys-cluster/empi) # Use virtual/$class to get imp dep in mpi_pkg_deplist. @@ -399,10 +398,6 @@ mpi_pkg_set_env() { export FC=$(mpi_pkg_fc) export PKG_CONFIG_PATH="$(mpi_root)$(get_libdir)/pkgconfig:${PKG_CONFIG_PATH}" mpi_pkg_set_ld_library_path - - if [ "$(mpi_pkg_base_imp)" == "openmpi" ]; then - export FAKEROOTKEY=1 - fi fi } @@ -417,10 +412,6 @@ mpi_pkg_restore_env() { export FC=$_mpi_oFC export PKG_CONFIG_PATH=$_mpi_oPCP export LD_LIBRARY_PATH=$_mpi_oLLP - - if [ "$(mpi_pkg_base_imp)" == "openmpi" ]; then - unset FAKEROOTKEY - fi fi }