diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-12-20 22:23:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-12-20 22:23:51 +0000 |
commit | c9b580af740c552883152e5490b909ae07652a70 (patch) | |
tree | 7b8a2ea22f3772b1934b90fa3dd105a6c8cbc030 /include | |
parent | cf20abecdb5ac08d31ef2c4931a2303ef9c91e82 (diff) | |
download | upstream-c9b580af740c552883152e5490b909ae07652a70.tar.gz upstream-c9b580af740c552883152e5490b909ae07652a70.tar.bz2 upstream-c9b580af740c552883152e5490b909ae07652a70.zip |
replace another instance of a relative path to generic-2.* with an absolute one (for symlinked target directories)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5885 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel-build.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kernel-build.mk b/include/kernel-build.mk index 03b4769f4b..061d604927 100644 --- a/include/kernel-build.mk +++ b/include/kernel-build.mk @@ -63,7 +63,7 @@ endif define Kernel/Prepare/Default 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 endef define Kernel/Prepare |