summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/mk/macros.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/mk/macros.mk b/core/mk/macros.mk
index eb56c24..fc9d2db 100644
--- a/core/mk/macros.mk
+++ b/core/mk/macros.mk
@@ -82,7 +82,8 @@ __embtk_mk_pathnotexist = $(shell test -e $(1) || echo y)
# A macro to unquote a string.
# Usage: $(call __embtk_mk_uquote,$(myquotedvar))
#
-__embtk_mk_uquote = $(subst ",,$(strip $(1)))
+__embtk_mk_uquote = $(subst ",,$(strip $(1)))
+embtk_uquote = $(call __embtk_mk_uquote,$(1))
# Macro to print messages
embtk_pwarning = $(call embtk_echo_yellow,"$(__embtk_msg_h)\\n~~ EmbToolkit ~~ WARNING: $(call __embtk_mk_uquote,$(1))\\n$(__embtk_msg_h)")