aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile_escaping/escaping_quotes.mk
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-05-29 22:56:51 +0000
committerEgor Tensin <Egor.Tensin@gmail.com>2020-05-29 22:57:06 +0000
commit6c569b8b68e3bd95e5658fafba7ce49c3cf3d585 (patch)
tree6fc0168a79b11b11ba76cb4ebcba47140edb2a69 /makefile_escaping/escaping_quotes.mk
parentmakefile_escaping: fix inclusions in other variables (diff)
downloadblog-6c569b8b68e3bd95e5658fafba7ce49c3cf3d585.tar.gz
blog-6c569b8b68e3bd95e5658fafba7ce49c3cf3d585.zip
makefile_escaping: rename *.mk files
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))'