summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2007-02-21 18:50:23 +0000
committerAvi Kivity <avi@qumranet.com>2007-02-21 18:50:23 +0000
commit19955258ce91b2ac36fa6d6e0c0725c50bcc1d7a (patch)
tree1e178f701934df4248b8023ddc99ea7a17b47552 /configure
parentebad8c8ee7bb044e113e2ac024ffaa1f131f33d1 (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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4cd60fdb..e4d1ec60 100755
--- a/configure
+++ b/configure
@@ -94,7 +94,7 @@ target_cpu() {
cat <<EOF > config.mak
PREFIX=$prefix
-KERNELDIR="$kerneldir"
+KERNELDIR=$kerneldir
WANT_MODULE=$want_module
EOF