diff options
author | Avi Kivity <avi@qumranet.com> | 2007-02-21 18:50:23 +0000 |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2007-02-21 18:50:23 +0000 |
commit | 19955258ce91b2ac36fa6d6e0c0725c50bcc1d7a (patch) | |
tree | 1e178f701934df4248b8023ddc99ea7a17b47552 /configure | |
parent | ebad8c8ee7bb044e113e2ac024ffaa1f131f33d1 (diff) |
kvm: configure: fix bogus quoting
config.mak is a Makefile, not a bash script, and thus won't strip
the quotes.
Thanks to Muli for noticing that I applied the wrong patch.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -94,7 +94,7 @@ target_cpu() { cat <<EOF > config.mak PREFIX=$prefix -KERNELDIR="$kerneldir" +KERNELDIR=$kerneldir WANT_MODULE=$want_module EOF |