aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-05-07 22:19:31 -0500
committerJack Nagel2012-05-07 22:20:48 -0500
commit4e91a9a87a021367a6a5773b9826e3fe36748779 (patch)
tree16e94bcbf23ede6b787e3330c0d3564c44c1dea9 /Library/Formula
parent7c65dfe0449624388c6a6852d9c18d71f4ea0e54 (diff)
downloadhomebrew-4e91a9a87a021367a6a5773b9826e3fe36748779.tar.bz2
libmpc: always run make check
Correctness is pretty important here, and it doesn't take too long. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libmpc.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/libmpc.rb b/Library/Formula/libmpc.rb
index bbd9481a8..bd06e61db 100644
--- a/Library/Formula/libmpc.rb
+++ b/Library/Formula/libmpc.rb
@@ -1,8 +1,8 @@
require 'formula'
class Libmpc < Formula
- url 'http://multiprecision.org/mpc/download/mpc-0.9.tar.gz'
homepage 'http://multiprecision.org'
+ url 'http://multiprecision.org/mpc/download/mpc-0.9.tar.gz'
md5 '0d6acab8d214bd7d1fbbc593e83dd00d'
depends_on 'gmp'
@@ -11,6 +11,7 @@ class Libmpc < Formula
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
+ system "make check"
system "make install"
end
end