diff options
author | Jerone Young <jyoung5@us.ibm.com> | 2007-10-17 16:03:59 -0500 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-10-18 11:17:14 +0200 |
commit | d0710dbd26351816bb2693445601a7fefa0eb3e9 (patch) | |
tree | e17fc569e9b48412b117f784c1fbb67dce1876f1 /configure | |
parent | 49f7f1a96dce9d059d2d51d450c9d4bdd529c8fd (diff) |
kvm: configure: fix top level qemu config for cross compile
Qemu is interpreting --cross-prefix & cpu as one argument. This of
course yeilds an error. This fixes the error.
Signed-off-by: Jerone Young <jyoung5@us.ibm.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -116,7 +116,8 @@ fi ${disable_gcc_check:+"--disable-gcc-check"} \ --prefix="$prefix" \ ${qemu_cc:+"--cc=$qemu_cc"} \ - ${cross_prefix:+"--cross-prefix=$cross_prefix --cpu=$arch"} \ + ${cross_prefix:+"--cross-prefix=$cross_prefix"} \ + ${cross_prefix:+"--cpu=$arch"} ) |