From 3fc78d2fabb5c613f10c9e94d8a1a4c1a548648f Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 30 May 2020 21:43:15 +0000 Subject: makefile_escaping: more concise test cases --- makefile_escaping/quoting_args.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'makefile_escaping/quoting_args.mk') diff --git a/makefile_escaping/quoting_args.mk b/makefile_escaping/quoting_args.mk index ff55f51..db4f7cf 100644 --- a/makefile_escaping/quoting_args.mk +++ b/makefile_escaping/quoting_args.mk @@ -9,7 +9,7 @@ test_var := Same line? export test_var test: - printf '%s\n' $(test_var) - printf '%s\n' '$(test_var)' - printf '%s\n' $$test_var - printf '%s\n' "$$test_var" + @printf '%s\n' $(test_var) + @printf '%s\n' '$(test_var)' + @printf '%s\n' $$test_var + @printf '%s\n' "$$test_var" -- cgit v1.2.3