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:
parent
239666c237
commit
7f73b5ae5a
1 changed files with 0 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue