summaryrefslogtreecommitdiff
path: root/mk/macros.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-10-06 18:37:03 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2012-10-06 18:37:03 +0200
commit7e248f0cbb04d705cbaf8bc180098bb59e67c4c6 (patch)
tree4834ea791c91de97502d5aba1d7b77605a75439d /mk/macros.mk
parentb2ca5d142fd4af6ae5da806dffc3ee499353d7f1 (diff)
downloadembtoolkit-7e248f0cbb04d705cbaf8bc180098bb59e67c4c6.tar.gz
embtoolkit-7e248f0cbb04d705cbaf8bc180098bb59e67c4c6.tar.bz2
embtoolkit-7e248f0cbb04d705cbaf8bc180098bb59e67c4c6.tar.xz
Toolchain: replace __embtk_mk_unquotestr -> __embtk_mk_uquote
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk/macros.mk')
-rw-r--r--mk/macros.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/macros.mk b/mk/macros.mk
index 349396f..26d03d2 100644
--- a/mk/macros.mk
+++ b/mk/macros.mk
@@ -68,11 +68,11 @@ __embtk_mk_pathexist = $(shell test -e $(1) && echo y)
__embtk_mk_pathnotexist = $(shell test -e $(1) || echo y)
#
-# __embtk_mk_unquotestr
+# __embtk_mk_uquote
# A macro to unquote a string.
-# Usage: $(call __embtk_mk_unquotestr,$(myquotedvar))
+# Usage: $(call __embtk_mk_uquote,$(myquotedvar))
#
-__embtk_mk_unquotestr = $(subst ",,$(strip $(1)))
+__embtk_mk_uquote = $(subst ",,$(strip $(1)))
# Macro to print messages
embtk_pwarning = $(call embtk_echo_yellow,"$(__embtk_msg_h)\\n~~ EmbToolkit ~~ WARNING: $(1)\\n$(__embtk_msg_h)")