diff options
author | Michael Gilroy <michael.gilroy24@gmail.com> | 2017-07-22 23:40:08 -0600 |
---|---|---|
committer | Michael Gilroy <michael.gilroy24@gmail.com> | 2017-07-22 23:40:08 -0600 |
commit | 5ab469dd6663c0cd77bee4c29c8601df16b4b443 (patch) | |
tree | d669f6bad479c2c3cbd074f390fd45b164ebcfde | |
parent | commenting out version checks for testing (diff) | |
download | gentoo-mpi-5ab469dd6663c0cd77bee4c29c8601df16b4b443.tar.gz gentoo-mpi-5ab469dd6663c0cd77bee4c29c8601df16b4b443.tar.bz2 gentoo-mpi-5ab469dd6663c0cd77bee4c29c8601df16b4b443.zip |
has_version is no longer needed
-rw-r--r-- | eclass/mpi-select.eclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/eclass/mpi-select.eclass b/eclass/mpi-select.eclass index 4c615fe..8c61032 100644 --- a/eclass/mpi-select.eclass +++ b/eclass/mpi-select.eclass @@ -47,9 +47,7 @@ mpi_dependencies() local impl ret for impl in "${MPI_TARGETS}"; do -# if has_version ">=sys-cluster/${impl}"; then - ret="${ret} >=sys-cluster/${impl}" -# fi + ret="${ret} =sys-cluster/${impl}" done echo "${ret}" |