diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-23 23:20:31 +0000 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-05-24 00:05:19 +0000 |
commit | 4b0959458c821ef26990fe1fe5931d552512526d (patch) | |
tree | bfd443f3a00207dac26c81ef7ccd2ce5bfe59449 /makefile_escaping/quotes.mk | |
parent | add .gitattributes (diff) | |
download | blog-4b0959458c821ef26990fe1fe5931d552512526d.tar.gz blog-4b0959458c821ef26990fe1fe5931d552512526d.zip |
makefile_escaping: set up CI
Diffstat (limited to '')
-rw-r--r-- | makefile_escaping/quotes.mk | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile_escaping/quotes.mk b/makefile_escaping/quotes.mk new file mode 100644 index 0000000..2d953f8 --- /dev/null +++ b/makefile_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))' |