diff options
| author | Jack Nagel | 2012-02-28 19:47:09 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-02-28 20:36:04 -0600 |
| commit | fd24a21f43581ad7d975b62c7527331e833ce06a (patch) | |
| tree | 900937d24bed7ade117b2b4f0b8b07351cd9e28e /Library/Formula/blitz.rb | |
| parent | f78970f6b99d4b1da7471d657ff34d8e660d4a8e (diff) | |
| download | homebrew-fd24a21f43581ad7d975b62c7527331e833ce06a.tar.bz2 | |
Fix audit warnings
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/blitz.rb')
| -rw-r--r-- | Library/Formula/blitz.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/blitz.rb b/Library/Formula/blitz.rb index 348bc1c85..46a2ac9c9 100644 --- a/Library/Formula/blitz.rb +++ b/Library/Formula/blitz.rb @@ -8,12 +8,12 @@ class Blitz < Formula head 'http://blitz.hg.sourceforge.net:8000/hgroot/blitz/blitz', :using => :hg if ARGV.build_head? and MacOS.xcode_version >= "4.3" - depends_on "automake" - depends_on "libtool" + depends_on "automake" => :build + depends_on "libtool" => :build end def install - system "/usr/bin/autoreconf", "-fi" if ARGV.build_head? + system "autoreconf", "-fi" if ARGV.build_head? system "./configure", "--disable-debug", "--disable-dependency-tracking", |
