Skip to content

Commit

Permalink
<Make> Fix for using relative path instead of abs path
Browse files Browse the repository at this point in the history
- make helper function was using realpath which cause creation
  of full path in the build dir which is not correct
  • Loading branch information
akashkollipara committed Feb 21, 2025
1 parent b5c8c40 commit 7d5cc24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mk/mk_helper.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ define check_config_and_include
ifeq ($(realpath $(1)),)
$$(info < ! > Invalid $(2) ...)
else
include $(realpath $(1))
include $(1)
endif
endef

0 comments on commit 7d5cc24

Please sign in to comment.