aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/erlang.rb
diff options
context:
space:
mode:
authorJack Nagel2013-11-08 19:06:15 -0600
committerJack Nagel2013-11-08 19:06:15 -0600
commitc3110934d491db3a4a86e02e46eea0334057e324 (patch)
tree2a9a49e6d7071f63b15e0f1d6996ddb224484da6 /Library/Formula/erlang.rb
parente8fa40fed78135a1dc083987afed67127c4010ac (diff)
downloadhomebrew-c3110934d491db3a4a86e02e46eea0334057e324.tar.bz2
erlang: disable silent rules
Diffstat (limited to 'Library/Formula/erlang.rb')
-rw-r--r--Library/Formula/erlang.rb17
1 files changed, 10 insertions, 7 deletions
diff --git a/Library/Formula/erlang.rb b/Library/Formula/erlang.rb
index 1662e2f1d..8f090d803 100644
--- a/Library/Formula/erlang.rb
+++ b/Library/Formula/erlang.rb
@@ -48,13 +48,16 @@ class Erlang < Formula
# Do this if building from a checkout to generate configure
system "./otp_build autoconf" if File.exist? "otp_build"
- args = ["--disable-debug",
- "--prefix=#{prefix}",
- "--enable-kernel-poll",
- "--enable-threads",
- "--enable-dynamic-ssl-lib",
- "--enable-shared-zlib",
- "--enable-smp-support"]
+ args = %W[
+ --disable-debug
+ --disable-silent-rules
+ --prefix=#{prefix}
+ --enable-kernel-poll
+ --enable-threads
+ --enable-dynamic-ssl-lib
+ --enable-shared-zlib
+ --enable-smp-support
+ ]
args << "--with-dynamic-trace=dtrace" unless MacOS.version <= :leopard or not MacOS::CLT.installed?