aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-11-13 11:27:49 -0600
committerJack Nagel2013-11-13 11:27:49 -0600
commit207910c9835f540437b4a411739d6b9d1090b00f (patch)
tree123b1931ef940cac868dad13f786c31704c54fc0 /Library/Formula
parentf2522552dec2be81f063b9b2be49e0d31c7aa2ff (diff)
downloadhomebrew-207910c9835f540437b4a411739d6b9d1090b00f.tar.bz2
jq: add missing libtool dep
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/jq.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/jq.rb b/Library/Formula/jq.rb
index 01485a3ce..fd694cbf3 100644
--- a/Library/Formula/jq.rb
+++ b/Library/Formula/jq.rb
@@ -10,11 +10,12 @@ class Jq < Formula
depends_on 'autoconf' => :build
depends_on 'automake' => :build
+ depends_on 'libtool' => :build
depends_on 'bison' => :build
end
def install
- system "autoreconf -i" if build.head?
+ system "autoreconf", "-iv" if build.head?
system "./configure"
system "make"
bin.install 'jq'