diff options
| author | Rosen Penev | 2021-03-26 10:09:34 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2022-03-19 15:13:58 +0000 |
| commit | 9586a270a06aa8305f066a07ca35ca4883035eed (patch) | |
| tree | a877b7fd107fc620593b104404c2eb1afc767c0d | |
| parent | 7ca7e0b22de6e629f5df12b8a935a168073bcca3 (diff) | |
| download | openwrt-9586a270a06aa8305f066a07ca35ca4883035eed.tar.gz | |
quilt.mk: fix typo in the Host section
HOST_PATCH_DIR is used for host patches, not PATCH_DIR.
Fixes refreshing patches with a custom HOST_PATCH_DIR.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
| -rw-r--r-- | include/quilt.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/quilt.mk b/include/quilt.mk index 6d25469daf..18cafe60a2 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -116,7 +116,7 @@ define Quilt/RefreshDir endef define Quilt/Refresh/Host - $(call Quilt/RefreshDir,$(HOST_BUILD_DIR),$(PATCH_DIR)) + $(call Quilt/RefreshDir,$(HOST_BUILD_DIR),$(HOST_PATCH_DIR)) endef define Quilt/Refresh/Package |