aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHong Xu2013-02-11 23:46:00 -0800
committerMike McQuaid2013-02-12 09:52:02 -0800
commit017490917c760fcf400aee7e33a16f6e99a2525e (patch)
tree21c7d4e0dfa9d8b27dbf438e3cddd2597557f336
parent5e2e437b1fcf68fedb45078c6be134cfcb0d78be (diff)
downloadhomebrew-017490917c760fcf400aee7e33a16f6e99a2525e.tar.bz2
qemu: fix configure.
Caused by #17754. Closes #17785. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
-rw-r--r--Library/Formula/qemu.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/qemu.rb b/Library/Formula/qemu.rb
index 6a7399723..4cf3b57ff 100644
--- a/Library/Formula/qemu.rb
+++ b/Library/Formula/qemu.rb
@@ -24,7 +24,7 @@ class Qemu < Formula
--disable-bsd-user
--disable-guest-agent
]
- args << build.with?('sdl') ? '--enable-sdl' : '--disable-sdl'
+ args << (build.with?('sdl') ? '--enable-sdl' : '--disable-sdl')
system "./configure", *args
system "make install"
end