From ad519184c89593f82df5280c4272352571fe0d7b Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Wed, 5 Sep 2018 14:21:17 +0200 Subject: [PATCH] protobuf: remove some options --- Formula/protobuf.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Formula/protobuf.rb b/Formula/protobuf.rb index 6ccb45526d..bd9694da25 100644 --- a/Formula/protobuf.rb +++ b/Formula/protobuf.rb @@ -13,11 +13,8 @@ class Protobuf < Formula sha256 "889ece6ab87970f1457159c972b4cf45be835c546e2007ea00df1e50c87651cf" => :el_capitan end - # this will double the build time approximately if enabled - option "with-test", "Run build-time check" option "without-python@2", "Build without python2 support" - deprecated_option "with-check" => "with-test" deprecated_option "without-python" => "with-python@2" deprecated_option "with-python3" => "with-python" @@ -51,7 +48,7 @@ class Protobuf < Formula system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-zlib" system "make" - system "make", "check" if build.with?("test") || build.bottle? + system "make", "check" if build.bottle? system "make", "install" # Install editor support and examples