aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-05 12:52:51 -0800
committerAdam Vandenberg2012-02-05 12:52:51 -0800
commit864a9033cac6f733d6fa35fca7040e22d793eab9 (patch)
treebdf0e783b448a65c71362a2c24af5da0ee4ce077 /Library/Formula
parentd3dc08ca6334deaae3fdf0c0d03bb124e8371b34 (diff)
downloadhomebrew-864a9033cac6f733d6fa35fca7040e22d793eab9.tar.bz2
libsigc++: always run check
If the tests only take 3 seconds, just run them instead of providing an option.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libsigc++.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/Library/Formula/libsigc++.rb b/Library/Formula/libsigc++.rb
index 227999450..5eb41e8d8 100644
--- a/Library/Formula/libsigc++.rb
+++ b/Library/Formula/libsigc++.rb
@@ -5,14 +5,10 @@ class Libsigcxx < Formula
url 'http://ftp.gnome.org/pub/GNOME/sources/libsigc++/2.2/libsigc++-2.2.10.tar.bz2'
sha256 'd3d810c2ad469edfb2d4db29643bef189b7613019eadbd4a72823af3c73c959c'
- def options
- [[ '--test', 'Verify the build during install with make check. (~3sec)' ]]
- end
-
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make"
- system "make check" if ARGV.include? '--test'
+ system "make check"
system "make install"
end
end