From 092b691892718569b281ac0b123e4633d1ba0081 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Fri, 2 Dec 2022 02:44:03 -0600 Subject: [PATCH] Make newlines go to stdout/stderr matching most recent output. --- scripts/make.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/make.sh b/scripts/make.sh index d49fb65d..3e578d1d 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -243,8 +243,7 @@ fi [ -n "$NOBUILD" ] && exit 0 -echo -n "Compile $OUTNAME" -[ -n "$V" ] && echo +echo "Compile $OUTNAME" DOTPROG=. # This is a parallel version of: do_loudly $BUILD lib/*.c $TOYFILES $LINK @@ -304,4 +303,4 @@ fi # multiplexer binary via truncate-and-write through a symlink. do_loudly chmod 555 "$OUTNAME" || exit 1 -echo +[ -z "$V" ] && echo >&2 -- 2.39.2