From e347d0480790c97d83a626fbcc2e9b367a71b744 Mon Sep 17 00:00:00 2001 From: midipix Date: Sat, 26 Oct 2019 22:27:11 +0000 Subject: build system: configure: error_msg(), warning_msg(): add terminating newline. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 4268290..fd82db9 100755 --- a/configure +++ b/configure @@ -38,12 +38,12 @@ usage() error_msg() { - printf '%s' "$@" >&2 + printf '%s\n' "$@" >&2 } warning_msg() { - printf '%s' "$@" >&2 + printf '%s\n' "$@" >&2 } verify_safe_path() -- cgit v1.2.3