diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2023-09-25 02:26:43 +0200 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-10-06 21:59:28 +0200 |
commit | bb1bfb46020b38179ef97d30333c90ab00b71c97 (patch) | |
tree | 13ca8614c83568f8590bceb151499b67b14c2bd3 /include | |
parent | 20d74c68112a2e7a6b4ce6eaf1aeeb136f0d2ed0 (diff) | |
download | openwrt-bb1bfb46020b38179ef97d30333c90ab00b71c97.tar.gz openwrt-bb1bfb46020b38179ef97d30333c90ab00b71c97.tar.bz2 openwrt-bb1bfb46020b38179ef97d30333c90ab00b71c97.zip |
quilt.mk: use CURDIR instead of ./ for PATCH_DIR and FILES_DIR
To better reference them for diagnostic use, reference the PATCH_DIR and
FILES_DIR with the absolute path instead of using ./ and reference by
the relative location.
No behaviour change intended.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/quilt.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/quilt.mk b/include/quilt.mk index 18cafe60a2..140d390528 100644 --- a/include/quilt.mk +++ b/include/quilt.mk @@ -34,8 +34,8 @@ endif ifneq ($(if $(DUMP),1,$(__quilt_inc)),1) __quilt_inc:=1 -PATCH_DIR?=./patches -FILES_DIR?=./files +PATCH_DIR?=$(CURDIR)/patches +FILES_DIR?=$(CURDIR)/files HOST_PATCH_DIR?=$(PATCH_DIR) HOST_FILES_DIR?=$(FILES_DIR) |