aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile_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/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/quotes.mk')
-rw-r--r--makefile_escaping/quotes.mk11
1 files changed, 0 insertions, 11 deletions
diff --git a/makefile_escaping/quotes.mk b/makefile_escaping/quotes.mk
deleted file mode 100644
index 2d953f8..0000000
--- a/makefile_escaping/quotes.mk
+++ /dev/null
@@ -1,11 +0,0 @@
-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))'