summaryrefslogtreecommitdiff
path: root/include/quilt.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-02-22 23:54:17 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-02-22 23:54:17 +0000
commitf684d0a47b5fefa1ffc59c51e17482dc13d3a272 (patch)
tree53157d02ff1dfa54f076117db45c59b9204f95a0 /include/quilt.mk
parentfb4a318970b6f314b6cc8b25747c7a2ee7cc9759 (diff)
downloadmtk-20170518-f684d0a47b5fefa1ffc59c51e17482dc13d3a272.zip
mtk-20170518-f684d0a47b5fefa1ffc59c51e17482dc13d3a272.tar.gz
mtk-20170518-f684d0a47b5fefa1ffc59c51e17482dc13d3a272.tar.bz2
allow a separate patch directory for host patches
SVN-Revision: 14630
Diffstat (limited to 'include/quilt.mk')
-rw-r--r--include/quilt.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/quilt.mk b/include/quilt.mk
index 77b76a6..71fee06 100644
--- a/include/quilt.mk
+++ b/include/quilt.mk
@@ -13,6 +13,8 @@ ifeq ($(TARGET_BUILD),1)
endif
PATCH_DIR?=./patches
FILES_DIR?=./files
+HOST_PATCH_DIR?=$(PATCH_DIR)
+HOST_FILES_DIR?=$(FILES_DIR)
ifeq ($(MAKECMDGOALS),refresh)
override QUILT=1
@@ -78,7 +80,7 @@ endif
define Host/Patch/Default
$(if $(QUILT),rm -rf $(HOST_BUILD_DIR)/patches; mkdir -p $(HOST_BUILD_DIR)/patches)
- $(call PatchDir,$(HOST_BUILD_DIR),$(PATCH_DIR),)
+ $(call PatchDir,$(HOST_BUILD_DIR),$(HOST_PATCH_DIR),)
$(if $(QUILT),touch $(HOST_BUILD_DIR)/.quilt_used)
endef