aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDave Goodell2012-05-17 18:09:52 -0500
committerCharlie Sharpsteen2012-07-02 08:42:56 -0800
commit19d79bca80430f235dc6d9946c0d321c0a684147 (patch)
treeb1c458ea28127c689e2680f133dfe92b6733820c /Library
parent570abaac222a3798fa66230ca21b77155339fc81 (diff)
downloadhomebrew-19d79bca80430f235dc6d9946c0d321c0a684147.tar.bz2
mpich2: delete unnecessary sbin files from MPE
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mpich2.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/mpich2.rb b/Library/Formula/mpich2.rb
index fdbb79348..2e47b26af 100644
--- a/Library/Formula/mpich2.rb
+++ b/Library/Formula/mpich2.rb
@@ -27,10 +27,14 @@ class Mpich2 < Formula
system "./configure", *args
system "make"
system "make install"
+
+ # MPE installs several helper scripts like "mpeuninstall" to the sbin
+ # directory, which we don't need when installing via homebrew
+ sbin.rmtree
end
def caveats; <<-EOS.undent
- Please be aware that installing this formula along with the OpenMPI
+ Please be aware that installing this formula along with the `openmpi`
formula will cause neither MPI installation to work correctly as
both packages install their own versions of mpicc/mpicxx and mpirun.
EOS