From afc23456a702c165e1732d36f0c82c283686770e Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 19 Sep 2021 12:28:04 +0000 Subject: do not use the echo(1) -n option, it is not portable; issue found on SUN Solaris 10 --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 94561c3a..cce7d50f 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #!/bin/sh # -# $Id: configure,v 1.78 2021/08/07 13:02:10 schwarze Exp $ +# $Id: configure,v 1.79 2021/09/19 12:28:04 schwarze Exp $ # # Copyright (c) 2014-2020 Ingo Schwarze # @@ -263,8 +263,8 @@ if [ -n "${CFLAGS}" ]; then else COMP="${CC} ${DEFCFLAGS} -Wno-unused -Werror" fi -echo -n "tested ${CC} -W: " 1>&2 -echo -n "testing ${CC} -W: " 1>&3 +printf "%s" "tested ${CC} -W: " 1>&2 +printf "%s" "testing ${CC} -W: " 1>&3 runtest noop WFLAG || true if [ -n "${CFLAGS}" ]; then -- cgit v1.2.3