diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 22:27:11 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 22:35:19 +0000 |
commit | fa1008d90eaf39be0675c48b74344ffbec41a29a (patch) | |
tree | 2a11a9c68991127e8d95bad69eda207948215241 | |
parent | a2d21a98e4426a5e031a0fa59e1e312be2624538 (diff) | |
download | w32lib-fa1008d90eaf39be0675c48b74344ffbec41a29a.tar.bz2 w32lib-fa1008d90eaf39be0675c48b74344ffbec41a29a.tar.xz |
build system: configure: error_msg(), warning_msg(): add terminating newline.
-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() |