diff options
| author | Evert Pot | 2014-05-27 00:33:36 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2014-06-08 10:37:10 -0700 |
| commit | 57a9cbcaaa9640b2ad96a9430ed660f9df7bcac1 (patch) | |
| tree | df746850634196f9aaf4bb0de1d5c972e6d93dd6 /Library/Formula | |
| parent | 96723ed047827b16b3dc348e1d3d588443f8f75f (diff) | |
| download | homebrew-57a9cbcaaa9640b2ad96a9430ed660f9df7bcac1.tar.bz2 | |
litmus: remove --disable-debug
Closes #29608.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/litmus.rb | 10 |
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 |
