Skip to content

Commit

Permalink
quilt.mk: use CURDIR instead of ./ for PATCH_DIR and FILES_DIR
Browse files Browse the repository at this point in the history
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 <[email protected]>
(cherry picked from commit bb1bfb4)
  • Loading branch information
Ansuel committed May 22, 2024
1 parent aa77c79 commit 61c50bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/quilt.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 61c50bd

Please sign in to comment.