diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-09-29 03:39:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-09-29 03:39:57 +0000 |
commit | d1933f97616f741723c7dbe0efb32bd9100c7886 (patch) | |
tree | b3b2a6549afe1de928cbe3eea56fed810a619a40 | |
parent | 5f1d42ea7ccab83a4e2e0a4147e39c5a1e19c89b (diff) | |
download | upstream-d1933f97616f741723c7dbe0efb32bd9100c7886.tar.gz upstream-d1933f97616f741723c7dbe0efb32bd9100c7886.tar.bz2 upstream-d1933f97616f741723c7dbe0efb32bd9100c7886.zip |
move a stampfile to make it easier to override the patch template
SVN-Revision: 9062
-rw-r--r-- | include/host-build.mk | 1 | ||||
-rw-r--r-- | include/kernel-defaults.mk | 1 | ||||
-rw-r--r-- | include/package-defaults.mk | 1 | ||||
-rw-r--r-- | include/quilt.mk | 2 |
4 files changed, 3 insertions, 2 deletions
diff --git a/include/host-build.mk b/include/host-build.mk index c0d62148e8..e0a2ec1493 100644 --- a/include/host-build.mk +++ b/include/host-build.mk @@ -27,6 +27,7 @@ ifneq ($(strip $(PKG_UNPACK)),) define Build/Prepare/Default $(PKG_UNPACK) $(Build/Patch) + $(if $(QUILT),touch $(PKG_BUILD_DIR)/.quilt_used) endef endif diff --git a/include/kernel-defaults.mk b/include/kernel-defaults.mk index 7e475660ae..fd5bb1ca06 100644 --- a/include/kernel-defaults.mk +++ b/include/kernel-defaults.mk @@ -45,6 +45,7 @@ Kernel/Patch:=$(Kernel/Patch/Default) define Kernel/Prepare/Default bzcat $(DL_DIR)/$(LINUX_SOURCE) | $(TAR) -C $(KERNEL_BUILD_DIR) $(TAR_OPTIONS) $(Kernel/Patch) + $(if $(QUILT),touch $(LINUX_DIR)/.quilt_used) endef define Kernel/Configure/2.4 diff --git a/include/package-defaults.mk b/include/package-defaults.mk index c9f8db1062..50554b3df5 100644 --- a/include/package-defaults.mk +++ b/include/package-defaults.mk @@ -39,6 +39,7 @@ ifneq ($(strip $(PKG_UNPACK)),) define Build/Prepare/Default $(PKG_UNPACK) $(Build/Patch) + $(if $(QUILT),touch $(PKG_BUILD_DIR)/.quilt_used) endef endif diff --git a/include/quilt.mk b/include/quilt.mk index aa0eda6919..8554f19c7f 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -59,7 +59,6 @@ endif define Build/Patch/Default $(if $(QUILT),rm -rf $(PKG_BUILD_DIR)/patches; mkdir -p $(PKG_BUILD_DIR)/patches) $(call PatchDir,$(PATCH_DIR),) - $(if $(QUILT),touch $(PKG_BUILD_DIR)/.quilt_used) endef define Kernel/Patch/Default @@ -68,7 +67,6 @@ define Kernel/Patch/Default if [ -d ./files ]; then $(CP) ./files/* $(LINUX_DIR)/; fi $(call PatchDir,$(GENERIC_PATCH_DIR),generic/) $(call PatchDir,$(PATCH_DIR),platform/) - $(if $(strip $(QUILT)),touch $(PKG_BUILD_DIR)/.quilt_used) endef $(STAMP_PATCHED): $(STAMP_PREPARED) |