From ab7547ed24c6fa8e0dfeba729fca8c1e59e9e967 Mon Sep 17 00:00:00 2001 From: midipix Date: Oct 26 2019 22:35:18 +0000 Subject: build system: configure: error_msg(), warning_msg(): add terminating newline. --- 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()