aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-08-29 11:20:42 -0500
committerJack Nagel2014-08-29 11:20:47 -0500
commitb42beaa662dda91dffb278896a9c1106b03dc9d1 (patch)
tree6f7a4a8c58a24e3a2e6ea071498bc1789380f306 /Library/Formula
parentcbb6e42f204d5380517725696a657df653c63d7e (diff)
downloadhomebrew-b42beaa662dda91dffb278896a9c1106b03dc9d1.tar.bz2
yaws: fix HEAD build
Fixes #31960.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/yaws.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/yaws.rb b/Library/Formula/yaws.rb
index 353b48946..bd2f7a671 100644
--- a/Library/Formula/yaws.rb
+++ b/Library/Formula/yaws.rb
@@ -9,8 +9,10 @@ class Yaws < Formula
option "without-yapp", "Omit yaws applications"
option '32-bit'
- depends_on 'erlang'
- depends_on 'autoconf' => :build
+ depends_on "autoconf" => :build
+ depends_on "automake" => :build
+ depends_on "libtool" => :build
+ depends_on "erlang"
# the default config expects these folders to exist
skip_clean 'var/log/yaws'
@@ -25,7 +27,7 @@ class Yaws < Formula
end
end
- system "autoconf"
+ system "autoreconf", "-fvi"
system "./configure", "--prefix=#{prefix}"
system "make install"