diff options
| author | Tim D. Smith | 2015-03-16 23:35:56 -0700 |
|---|---|---|
| committer | Tim D. Smith | 2015-03-17 07:12:49 -0700 |
| commit | 43195c2312d7745938028e7c02fe25495eab2258 (patch) | |
| tree | 7c3a2639076a636eee3d0e48efb500f56af46f46 | |
| parent | 4e2f78ed98b8f522b397b1a934989981ba58b323 (diff) | |
| download | homebrew-43195c2312d7745938028e7c02fe25495eab2258.tar.bz2 | |
protobuf: always run make check when bottling
Closes #37785.
Signed-off-by: Tim D. Smith <git@tim-smith.us>
| -rw-r--r-- | Library/Formula/protobuf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/protobuf.rb b/Library/Formula/protobuf.rb index d36ac5446..0c6184699 100644 --- a/Library/Formula/protobuf.rb +++ b/Library/Formula/protobuf.rb @@ -71,7 +71,7 @@ class Protobuf < Formula "--prefix=#{prefix}", "--with-zlib" system "make" - system "make", "check" if build.with? "check" + system "make", "check" if build.with? "check" || build.bottle? system "make", "install" # Install editor support and examples |
