qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] qemu: fix out of tree cross compile


From: Alexey Kardashevskiy
Subject: [Qemu-devel] [PATCH] qemu: fix out of tree cross compile
Date: Mon, 27 May 2013 16:13:15 +1000

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 <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]