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.mk11
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile_escaping/escaping_quotes.mk b/makefile_escaping/escaping_quotes.mk
new file mode 100644
index 0000000..2d953f8
--- /dev/null
+++ b/makefile_escaping/escaping_quotes.mk
@@ -0,0 +1,11 @@
+escape = $(subst ','\'',$(1))
+
+test_var := Includes ' quote
+
+echo_test_var := printf '%s\n' '$(call escape,$(test_var))'
+bash_test_var := bash -c '$(call escape,$(echo_test_var))'
+
+test:
+ printf '%s\n' '$(call escape,$(test_var))'
+ bash -c '$(call escape,$(echo_test_var))'
+ bash -c '$(call escape,$(bash_test_var))'