aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorEvert Pot2014-05-27 00:33:36 -0400
committerAdam Vandenberg2014-06-08 10:37:10 -0700
commit57a9cbcaaa9640b2ad96a9430ed660f9df7bcac1 (patch)
treedf746850634196f9aaf4bb0de1d5c972e6d93dd6 /Library
parent96723ed047827b16b3dc348e1d3d588443f8f75f (diff)
downloadhomebrew-57a9cbcaaa9640b2ad96a9430ed660f9df7bcac1.tar.bz2
litmus: remove --disable-debug
Closes #29608. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/litmus.rb10
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Formula/litmus.rb b/Library/Formula/litmus.rb
index 6753d61be..967330f4d 100644
--- a/Library/Formula/litmus.rb
+++ b/Library/Formula/litmus.rb
@@ -6,8 +6,14 @@ class Litmus < Formula
sha1 '42ad603035d15798facb3be79b1c51376820cb19'
def install
- system "./configure", "--disable-debug",
- "--prefix=#{prefix}"
+ # Note that initially this formula also had the --disable-debug option
+ # passed to ./configure.
+ #
+ # This disabled a critical feature. Litmus is a debugging tool, and this
+ # caused all logs to be empty by default.
+ #
+ # See: https://github.com/Homebrew/homebrew/pull/29608
+ system "./configure", "--prefix=#{prefix}"
system "make install"
end
end