diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-03 11:33:13 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-10-03 11:33:13 +0000 |
commit | 5171edd8d5f2607511ba2a86cf110686e10a8ad8 (patch) | |
tree | e71bf8ce6306ea1c6e674b0a5c7cf200e975ccc0 /include | |
parent | b292524c1395a150fb82eb15dc7c570f25e0b2d1 (diff) | |
download | upstream-5171edd8d5f2607511ba2a86cf110686e10a8ad8.tar.gz upstream-5171edd8d5f2607511ba2a86cf110686e10a8ad8.tar.bz2 upstream-5171edd8d5f2607511ba2a86cf110686e10a8ad8.zip |
kernel-build.mk: there is no tarball when using CONFIG_KERNEL_GIT_CLONE_URI or CONFIG_EXTERNAL_KERNEL_TREE, do not make the prepared stamp file depend on it in this case
SVN-Revision: 28361
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 432efd6ceb..cf8737c8ee 100644 --- a/include/kernel-build.mk +++ b/include/kernel-build.mk @@ -61,7 +61,7 @@ define BuildKernel $(if $(QUILT),$(Build/Quilt)) $(if $(LINUX_SITE),$(call Download,kernel)) - $(STAMP_PREPARED): $(DL_DIR)/$(LINUX_SOURCE) + $(STAMP_PREPARED): $(if $(LINUX_SITE),$(DL_DIR)/$(LINUX_SOURCE)) -rm -rf $(KERNEL_BUILD_DIR) -mkdir -p $(KERNEL_BUILD_DIR) $(Kernel/Prepare) |