diff options
| author | nibbles 2bits | 2012-06-25 09:24:32 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-06-25 19:38:33 -0700 |
| commit | fadd9123cb8d272aea6eb2dc1d713816a95d0323 (patch) | |
| tree | 26f1bf34add9cf1762fde2826e529ac0351b6a58 /Library/Formula | |
| parent | bcda0d22aa331e13d80de341d41abc14815a7bdc (diff) | |
| download | homebrew-fadd9123cb8d272aea6eb2dc1d713816a95d0323.tar.bz2 | |
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: #12909
Closes #13008.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/qemu.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Library/Formula/qemu.rb b/Library/Formula/qemu.rb index f02c341d2..6b046e41d 100644 --- a/Library/Formula/qemu.rb +++ b/Library/Formula/qemu.rb @@ -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 |
