diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/openssl.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb index 91e62ea12..e9a3181a2 100644 --- a/Library/Formula/openssl.rb +++ b/Library/Formula/openssl.rb @@ -13,6 +13,7 @@ class Openssl < Formula end option :universal + option "without-check", "Skip build-time tests (not recommended)" depends_on "makedepend" => :build @@ -60,7 +61,7 @@ class Openssl < Formula system "perl", "./Configure", *(configure_args + arch_args[arch]) system "make", "depend" system "make" - system "make", "test" + system "make", "test" if build.with? "check" if build.universal? cp Dir["*.?.?.?.dylib", "*.a", "apps/openssl"], dir |
