diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 22:27:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 22:35:18 +0000 |
commit | 9148bae6a7191f2de483f45de9224a5a8a5b35c5 (patch) | |
tree | 4854686f2d34c7f67f0a992a70611ad8d79f50a4 /configure | |
parent | 0dcd9c00c295f86db56b249a9f78bd89f88bef8d (diff) | |
download | u16ports-9148bae6a7191f2de483f45de9224a5a8a5b35c5.tar.bz2 u16ports-9148bae6a7191f2de483f45de9224a5a8a5b35c5.tar.xz |
build system: configure: error_msg(), warning_msg(): add terminating newline.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |