Browse Source

replace another instance of a relative path to generic-2.* with an absolute one (for symlinked target directories)

SVN-Revision: 5885
Felix Fietkau 19 years ago
parent
commit
4a17097247
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/kernel-build.mk

+ 1 - 1
include/kernel-build.mk

@@ -63,7 +63,7 @@ endif
 
 
 define Kernel/Prepare/Default
 define Kernel/Prepare/Default
 	bzcat $(DL_DIR)/$(LINUX_SOURCE) | tar -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS)
 	bzcat $(DL_DIR)/$(LINUX_SOURCE) | tar -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS)
-	[ -d ../generic-$(KERNEL)/patches ] && $(PATCH) $(LINUX_DIR) $(GENERIC_PLATFORM_DIR)/patches 
+	[ -d $(GENERIC_PLATFORM_DIR)/patches ] && $(PATCH) $(LINUX_DIR) $(GENERIC_PLATFORM_DIR)/patches 
 	[ -d ./patches ] && $(PATCH) $(LINUX_DIR) ./patches
 	[ -d ./patches ] && $(PATCH) $(LINUX_DIR) ./patches
 endef
 endef
 define Kernel/Prepare
 define Kernel/Prepare