diff options
| author | Adam Vandenberg | 2013-11-26 21:31:20 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-26 21:31:20 -0800 |
| commit | 33ac023a1f20e4e34d47c0bc083837b752ba67ed (patch) | |
| tree | f4a04fa724725f0d8b6ca93056caa4240607ff5a | |
| parent | 98f9b9ad48d5f8945c9bb0ef813e14e0fd04707c (diff) | |
| download | homebrew-33ac023a1f20e4e34d47c0bc083837b752ba67ed.tar.bz2 | |
geoip: always use newer autotools
Closes #24662.
| -rw-r--r-- | Library/Formula/geoip.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/geoip.rb b/Library/Formula/geoip.rb index 1b62a5596..2e3ade95c 100644 --- a/Library/Formula/geoip.rb +++ b/Library/Formula/geoip.rb @@ -6,10 +6,9 @@ class Geoip < Formula sha1 '41ed21fb2d40e54648cae2a1f73e8a5210676def' head 'https://github.com/maxmind/geoip-api-c.git' - # These are needed for the autoreconf it always tries to run. - depends_on :autoconf - depends_on :automake - depends_on :libtool + depends_on 'autoconf' => :build + depends_on 'automake' => :build + depends_on 'libtool' => :build option :universal |
