summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJerone Young <jyoung5@us.ibm.com>2008-04-23 23:56:34 -0500
committerAvi Kivity <avi@qumranet.com>2008-04-27 16:00:19 +0300
commit0c43cc2bd1f63aefce15a573ff3aa247008e96f5 (patch)
tree0a2f3a7d57f65b5cf3240994dba78891e37ade82 /configure
parent2102810dcdd61956aec04675e0da6cb65da7e284 (diff)
kvm: configure: Remove test suite config.mak from libkvm build
This is a relic of the big userspace refactoring, but today libkvm does should not include settings from the test suite. This patch resolves this and removes the overwriting of setting from the main config.mak with test suite settings. Signed-off-by: Jerone Young <jyoung5@us.ibm.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index eefb4163..06b45b09 100755
--- a/configure
+++ b/configure
@@ -2,6 +2,9 @@
prefix=/usr/local
kerneldir=/lib/modules/$(uname -r)/build
+cc=cc
+ld=ld
+objcopy=objcopy
want_module=1
qemu_cc=
qemu_cflags=
@@ -128,4 +131,7 @@ PREFIX=$prefix
KERNELDIR=$kerneldir
WANT_MODULE=$want_module
CROSS_COMPILE=$cross_prefix
+CC=$cross_prefix$cc
+LD=$cross_prefix$ld
+OBJCOPY=$cross_prefix$objcopy
EOF