QEMU uses headers from source directory, however the "asm" symlink was created in the build directory what broke KVM stuff compilation.
Signed-off-by: Alexey Kardashevskiy <a...@ozlabs.ru> --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 5ae7e4a..9c3c5e5 100755 --- a/configure +++ b/configure @@ -4135,7 +4135,7 @@ if test "$linux" = "yes" ; then esac # For non-KVM architectures we will not have asm headers if [ -e "$source_path/linux-headers/asm-$linux_arch" ]; then - symlink "$source_path/linux-headers/asm-$linux_arch" linux-headers/asm + symlink "$source_path/linux-headers/asm-$linux_arch" $source_path/linux-headers/asm fi fi -- 1.7.10.4