diff options
| author | Adam Vandenberg | 2012-10-01 16:24:36 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-01 16:24:36 -0700 |
| commit | 60ead1b2ca1678b196b6255e5047e8141d49cb5f (patch) | |
| tree | 1f2b01e4f046fee9b5d492acbf34187a1e9cbf23 /Library/Formula | |
| parent | ad0d176419f303a7656429aec2e677c627300a7f (diff) | |
| download | homebrew-60ead1b2ca1678b196b6255e5047e8141d49cb5f.tar.bz2 | |
gmp: remove option to skip tests
Refs #15114.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gmp.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/gmp.rb b/Library/Formula/gmp.rb index 617e97040..ba7ee2019 100644 --- a/Library/Formula/gmp.rb +++ b/Library/Formula/gmp.rb @@ -7,7 +7,6 @@ class Gmp < Formula sha256 '1f588aaccc41bb9aed946f9fe38521c26d8b290d003c5df807f65690f2aadec9' option '32-bit' - option 'skip-check', 'Do not run `make check`' def install # Reports of problems using gcc 4.0 on Leopard @@ -33,7 +32,7 @@ class Gmp < Formula system "make" ENV.j1 # Doesn't install in parallel on 8-core Mac Pro # Upstream implores users to always run the test suite - system "make check" unless build.include? "skip-check" + system "make check" system "make install" end end |
