From c4fe8febaf8ddbc8fdb40e922b52405ab0a8791e Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 2 Oct 2015 11:07:10 +1300 Subject: Use printf not echo --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3b6b0f84..c2d4b5fd 100644 --- a/Makefile +++ b/Makefile @@ -234,7 +234,7 @@ test-sh : exit 1 ; \ fi \ done - @echo "All sh(1) scripts parsed successfully." + @printf 'All sh(1) scripts parsed successfully.\n' test-bash : @for bash in bash/* bash/bashrc.d/* bash/bash_profile.d/* ; do \ @@ -242,7 +242,7 @@ test-bash : exit 1 ; \ fi \ done - @echo "All bash(1) scripts parsed successfully." + @printf 'All bash(1) scripts parsed successfully.\n' test-bin : @for bin in bin/* ; do \ @@ -252,11 +252,11 @@ test-bin : sh -n "$$bin" || exit 1 ; \ fi ; \ done - @echo "All shell scripts in bin parsed successfully." + @printf 'All shell scripts in bin parsed successfully.\n' test-urxvt: @for perl in urxvt/ext/* ; do \ perl -c "$$perl" >/dev/null || exit 1 ; \ done - @echo "All Perl scripts in urxvt/ext parsed successfully." + @printf 'All Perl scripts in urxvt/ext parsed successfully.\n' -- cgit v1.2.3