diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 19:38:54 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 19:40:33 +0000 |
commit | 82edcb8f201496177824af08ce533ece34b9faef (patch) | |
tree | 69ef1c351a902849d90292f741699c81d3780c8d | |
parent | e2fdabd2de9d4a1f0ebb9975d63804dd8985fe44 (diff) | |
download | ntapi-82edcb8f201496177824af08ce533ece34b9faef.tar.bz2 ntapi-82edcb8f201496177824af08ce533ece34b9faef.tar.xz |
build system: configure: replace echo with printf.
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -38,12 +38,12 @@ usage() error_msg() { - echo "$@" >&2 + printf '%s' "$@" >&2 } warning_msg() { - echo "$@" >&2 + printf '%s' "$@" >&2 } @@ -370,7 +370,7 @@ common_defaults() config_flags() { mb_ldflags_tmp=" $mb_ldflags " - mb_ldflags_libs=$(echo "$mb_ldflags_tmp" | sed 's/ -static / /g') + mb_ldflags_libs=$(printf '%s' "$mb_ldflags_tmp" | sed 's/ -static / /g') if [ "$mb_ldflags_tmp" != "$mb_ldflags_libs" ]; then mb_ldflags="$mb_ldflags_libs" |