[PATCH] kbuild: Fix creation of include2/asm symlink

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Sam Ravnborg <sam@...>
Cc: Jeff Mahoney <jeffm@...>, Andrew Morton <akpm@...>, <linux-kernel@...>
Date: Friday, August 15, 2008 - 9:45 am

The directory include2/asm can point wrongly to a non-existing
directory on architectures that have moved include/asm under arch/*.

This patch fixes it by checking firstly whether arch/*/include/asm is
available.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
---
diff --git a/Makefile b/Makefile
index 53bf6ec..bcbb764 100644
--- a/Makefile
+++ b/Makefile
@@ -934,7 +934,11 @@ ifneq ($(KBUILD_SRC),)
 	fi;
 	$(Q)if [ ! -d include2 ]; then                                  \
 	    mkdir -p include2;                                          \
-	    ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm;     \
+	    if [ -d $(srctree)/arch/$(SRCARCH)/include/asm ]; then	\
+		ln -fsn $(srctree)/arch/$(SRCARCH)/include/asm include2/asm; \
+	    else							\
+		ln -fsn $(srctree)/include/asm-$(SRCARCH) include2/asm;	\
+	    fi;								\
 	fi
 endif
 
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] kbuild: Fix creation of include2/asm symlink, Takashi Iwai, (Fri Aug 15, 9:45 am)