diff options
| author | Jack Nagel | 2014-06-01 21:38:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-06-01 21:38:18 -0500 |
| commit | c9f93ca96d4ab39539c73f003c2656c57c15e46b (patch) | |
| tree | 887b55472a086472bc47b915adf5084e4b946f06 /Library | |
| parent | 89f481aef7b90afb0e17b6bc2191984266ec54cf (diff) | |
| download | homebrew-c9f93ca96d4ab39539c73f003c2656c57c15e46b.tar.bz2 | |
sdl: modernize autotools deps
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sdl.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/sdl.rb b/Library/Formula/sdl.rb index 7d75d0b5b..614420b06 100644 --- a/Library/Formula/sdl.rb +++ b/Library/Formula/sdl.rb @@ -15,9 +15,9 @@ class Sdl < Formula head do url 'http://hg.libsdl.org/SDL', :branch => 'SDL-1.2', :using => :hg - depends_on :autoconf - depends_on :automake - depends_on :libtool + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build end option 'with-x11-driver', 'Compile with support for X11 video driver' @@ -25,9 +25,9 @@ class Sdl < Formula if build.with? 'x11-driver' depends_on :x11 - depends_on :autoconf - depends_on :automake - depends_on :libtool + depends_on "autoconf" => :build + depends_on "automake" => :build + depends_on "libtool" => :build end # Fix for a bug preventing SDL from building at all on OSX 10.9 Mavericks |
