aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/requirements/mpi_dependency.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-07-01 23:16:38 +0100
committerMike McQuaid2013-07-01 23:16:38 +0100
commit9cff299789ccdc59555cd8513d75b3c378f18073 (patch)
tree89b2c59527e9cf41307a83d52f9bdf1536cd6669 /Library/Homebrew/requirements/mpi_dependency.rb
parent1521ea9cf1a7de3fabe339d8aa1ac7a27ac80b2e (diff)
downloadhomebrew-9cff299789ccdc59555cd8513d75b3c378f18073.tar.bz2
Remove message from default_formula'd requirements
Diffstat (limited to 'Library/Homebrew/requirements/mpi_dependency.rb')
-rw-r--r--Library/Homebrew/requirements/mpi_dependency.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/Library/Homebrew/requirements/mpi_dependency.rb b/Library/Homebrew/requirements/mpi_dependency.rb
index 2baf9a904..44fc23495 100644
--- a/Library/Homebrew/requirements/mpi_dependency.rb
+++ b/Library/Homebrew/requirements/mpi_dependency.rb
@@ -60,28 +60,4 @@ class MPIDependency < Requirement
ENV[compiler.upcase] = mpi_path
end
end
-
- def message
- if not @unknown_langs.empty?
- <<-EOS.undent
- There is no MPI compiler wrapper for:
- #{@unknown_langs.join ', '}
-
- The following values are valid arguments to `MPIDependency.new`:
- :cc, :cxx, :f90, :f77
- EOS
- else
- <<-EOS.undent
- Homebrew could not locate working copies of the following MPI compiler
- wrappers:
- #{@non_functional.join ', '}
-
- If you have a MPI installation, please ensure the bin directory is on your
- PATH and that all the wrappers are functional. Otherwise, a MPI
- installation can be obtained from homebrew by *picking one* of the
- following formulae:
- open-mpi, mpich2
- EOS
- end
- end
end