diff options
| author | Misty De Meo | 2013-05-14 12:23:10 -0500 | 
|---|---|---|
| committer | Misty De Meo | 2013-05-14 12:24:02 -0500 | 
| commit | ac4078c6dfe131954e124737f40073063f29b671 (patch) | |
| tree | 4e0888282216900a19555b71d68a75fbb8156d25 /Library/Formula/ekg2.rb | |
| parent | 8709aa3a748a4db3fd894d824a52dceb8575c71b (diff) | |
| download | homebrew-ac4078c6dfe131954e124737f40073063f29b671.tar.bz2 | |
ekg2: fix building configure args
Fixes #19746.
Diffstat (limited to 'Library/Formula/ekg2.rb')
| -rw-r--r-- | Library/Formula/ekg2.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/ekg2.rb b/Library/Formula/ekg2.rb index 6d0091b36..12e8dd20e 100644 --- a/Library/Formula/ekg2.rb +++ b/Library/Formula/ekg2.rb @@ -20,7 +20,7 @@ class Ekg2 < Formula              "--without-gtk",              "--enable-unicode"] -    args << build.with?("libgadu") ? "--with-libgadu" : "--without-libgadu" +    args << (build.with?("libgadu") ? "--with-libgadu" : "--without-libgadu")      system "./configure", *args      system "make install"  | 
