From df727decd95183c03ca17ed5b1bbc8e76f24dac2 Mon Sep 17 00:00:00 2001
From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Date: Thu, 24 Aug 2006 21:39:49 +0000
Subject: - only link asm-generic if it exists.   PS: test for existence on
 Slowaris was disfunctional, last time i looked. Shouldn't matter much here,
 though..

---
 extra/scripts/fix_includes.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/extra/scripts/fix_includes.sh b/extra/scripts/fix_includes.sh
index 465d567bf..30f026f88 100755
--- a/extra/scripts/fix_includes.sh
+++ b/extra/scripts/fix_includes.sh
@@ -160,10 +160,10 @@ fi;
 
 
 # Annoyingly, 2.6.x kernel headers also need an include/asm-generic/ directory
-if [ ! -e include/asm-generic ] ; then
 if [ $VERSION -eq 2 ] && [ $PATCHLEVEL -ge 6 ] ; then
-    ln -fs $KERNEL_SOURCE/include/asm-generic include/asm-generic
-fi;
+	[ ! -e include/asm-generic ] && \
+		[ -e $KERNEL_SOURCE/include/asm-generic ] && \
+	ln -fs $KERNEL_SOURCE/include/asm-generic include/asm-generic
 fi
 
 
-- 
cgit v1.2.3