diff options
Diffstat (limited to 'Library')
| -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 |
