qemu: Let it build all targets

The previous commit restricted the targets to just the native one,
but Qemu is an emulator.  So that change disabled functionality.
Remove the target specifier, and let Qemu build all targets again.
Fixes problems posted by two users in the comments of the previous
pull request:  Homebrew/homebrew#12909

Closes Homebrew/homebrew#13008.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
nibbles 2bits 2012-06-25 09:24:32 -07:00 committed by Adam Vandenberg
parent 239666c237
commit 7f73b5ae5a

View file

@ -25,11 +25,6 @@ class Qemu < Formula
--disable-guest-agent
--disable-sdl
]
if MacOS.prefer_64_bit?
args << '--target-list=x86_64-softmmu'
else
args << '--target-list=i386-softemu'
end
system "./configure", *args
system "make install"
end