diff options
-rw-r--r-- | eclass/mpi-select.eclass | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/eclass/mpi-select.eclass b/eclass/mpi-select.eclass index 39d9574..4c615fe 100644 --- a/eclass/mpi-select.eclass +++ b/eclass/mpi-select.eclass @@ -47,9 +47,9 @@ mpi_dependencies() local impl ret for impl in "${MPI_TARGETS}"; do - if has_version ">=sys-cluster/${impl}"; then +# if has_version ">=sys-cluster/${impl}"; then ret="${ret} >=sys-cluster/${impl}" - fi +# fi done echo "${ret}" @@ -97,11 +97,6 @@ _mpi_do() local slash=/ local mdir="$(mpi_root)" - if ! mpi_classed; then - $* - return ${?} - fi - shift @@ -197,6 +192,7 @@ mpi_dosym() { _mpi_do "dosym" $*; } # @FUNCTION: mpi_root # @DESCRIPTION: # Sets the root directory for the mpi pkg install +mpi_root { echo "/usr/$(get_libdir)/mpi/${PF}" } |