aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile_escaping/escaping_quotes.mk
diff options
context:
space:
mode:
Diffstat (limited to 'makefile_escaping/escaping_quotes.mk')
-rw-r--r--makefile_escaping/escaping_quotes.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/makefile_escaping/escaping_quotes.mk b/makefile_escaping/escaping_quotes.mk
index 2a43f69..13835e7 100644
--- a/makefile_escaping/escaping_quotes.mk
+++ b/makefile_escaping/escaping_quotes.mk
@@ -9,7 +9,9 @@ escape = $(subst ','\'',$(1))
test_var := Includes ' quote
+# printf $test_var
echo_test_var := printf '%s\n' '$(call escape,$(test_var))'
+# bash -c 'printf $test_var'
bash_test_var := bash -c '$(call escape,$(echo_test_var))'
test: