aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ekg2.rb
diff options
context:
space:
mode:
authorMisty De Meo2013-05-14 12:23:10 -0500
committerMisty De Meo2013-05-14 12:24:02 -0500
commitac4078c6dfe131954e124737f40073063f29b671 (patch)
tree4e0888282216900a19555b71d68a75fbb8156d25 /Library/Formula/ekg2.rb
parent8709aa3a748a4db3fd894d824a52dceb8575c71b (diff)
downloadhomebrew-ac4078c6dfe131954e124737f40073063f29b671.tar.bz2
ekg2: fix building configure args
Fixes #19746.
Diffstat (limited to 'Library/Formula/ekg2.rb')
-rw-r--r--Library/Formula/ekg2.rb2
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"