aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorShaun Jackman2014-06-04 14:41:37 +0200
committerAdam Vandenberg2014-06-04 07:33:57 -0700
commitdb3123d900780effab5c59fc0b4c05784aa627bd (patch)
tree31c896220e6ef2b920eb5521b0a2794017b5d715 /Library/Formula
parentb38824c5568a8de52edde74b4dbe5453f5154b79 (diff)
downloadhomebrew-db3123d900780effab5c59fc0b4c05784aa627bd.tar.bz2
openssl: Add option --without-check
Closes #29860. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/openssl.rb3
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