aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-02-06 15:21:52 -0600
committerJack Nagel2012-02-06 15:21:52 -0600
commit7d06b18b7a99b69741db010586afeebebdf783a9 (patch)
tree8f52d7de9351bde5150120854046a748eb88b846 /Library
parent122fbb40288dc000da719ed0833cf2760f847643 (diff)
downloadhomebrew-7d06b18b7a99b69741db010586afeebebdf783a9.tar.bz2
sdl_sound: disable build-time sdl test
SDL is a dep and at this point has been successfully installed, so avoid compiling a test program. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/sdl_sound.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/sdl_sound.rb b/Library/Formula/sdl_sound.rb
index 4a100daa3..ac09c180d 100644
--- a/Library/Formula/sdl_sound.rb
+++ b/Library/Formula/sdl_sound.rb
@@ -17,7 +17,9 @@ class SdlSound < Formula
def install
system "./bootstrap" if ARGV.build_head?
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-dependency-tracking",
+ "--disable-sdltest"
system "make"
system "make check"
system "make install"