From 33d84813131809e962a4cd8cae9b66a9062fa8db Mon Sep 17 00:00:00 2001 From: Sheng Yang Date: Thu, 20 Dec 2007 14:22:18 +0800 Subject: [PATCH] kvm: external module: Remove 'include/asm' before execute 'ln' We use 'ln -sf' to refresh the symbolic now. But if 'include/asm' is a directory (as in old layout), 'ln' will give wrong result. Signed-off-by: Sheng Yang --- kernel/Makefile | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/kernel/Makefile b/kernel/Makefile index d409a0a..e5d9fff 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -35,7 +35,8 @@ sync: "$(LINUX)"/./include/linux/kvm*.h \ "$(LINUX)"/./include/asm-x86/kvm*.h \ tmp/ - ln -sf asm-x86 include/asm + rm -rf include/asm + ln -s asm-x86 include/asm $(call unifdef, include/linux/kvm.h) $(call unifdef, include/linux/kvm_para.h) -- 1.5.3.4