diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 22:27:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 22:35:17 +0000 |
commit | 90a15340e73e78999e4d6d837fc9b0ee55ab2be2 (patch) | |
tree | 95283814514a0f8131c1c1373088bf1160daaa04 /configure | |
parent | 4cc9009ba29605be308552c4b3b9d5acdd159911 (diff) | |
download | mmglue-90a15340e73e78999e4d6d837fc9b0ee55ab2be2.tar.bz2 mmglue-90a15340e73e78999e4d6d837fc9b0ee55ab2be2.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() |