summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2010-04-11 19:01:01 +0200
committerAurelien Jarno <aurelien@aurel32.net>2010-04-14 00:23:48 +0200
commitf038e8f79bcda25bc30daacf3906d998c12b34f4 (patch)
tree59b9a03a12c744717ed743ec4ad9a8d5d65b667b /configure
parente00ac249532c7a64594c814a73b1033cc3da013d (diff)
downloadqemu-f038e8f79bcda25bc30daacf3906d998c12b34f4.tar.gz
Use correct cflags for kvm-kmod when cross compiling
Using $pkgconfig instead of pkg-config will use ${cross_prefix}pkg-config if that is available. This fix is needed for cross compilations without modified PATH. Without the fix, PATH must be modified to find the cross pkg-config before the native pkg-config. Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 966cd7d29d..7c06719539 100755
--- a/configure
+++ b/configure
@@ -1488,7 +1488,7 @@ EOF
kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
fi
else
- kvm_cflags=`pkg-config --cflags kvm-kmod 2> /dev/null`
+ kvm_cflags=`$pkgconfig --cflags kvm-kmod 2>/dev/null`
fi
if compile_prog "$kvm_cflags" "" ; then
kvm=yes