aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile_escaping/quotes.mk
diff options
context:
space:
mode:
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))'