From 3954d39aafe671d92fe532fa752c305f79f7b80f Mon Sep 17 00:00:00 2001 From: Thomas Perl Date: Sun, 16 Apr 2017 23:33:41 +0200 Subject: [PATCH] Replace 'echo -n' with 'printf' --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 43d4852..bac59d1 100755 --- a/configure +++ b/configure @@ -87,7 +87,7 @@ check_header_cc() { } message_wrapper() { - echo -n "$1 ... " + printf "$1 ... " shift $* if [ $? -eq 0 ]; then @@ -110,7 +110,7 @@ check_sdl_lib() { } check_os() { - echo -n "Detecting operating system ... " + printf "Detecting operating system ... " UNAME=$(uname -s) case $UNAME in Linux) -- 2.11.4.GIT