diff options
author | midipix <writeonce@midipix.org> | 2019-10-26 19:38:54 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-10-26 19:40:34 +0000 |
commit | 14aaab17e7e44a3000266169df13e42d7b421ade (patch) | |
tree | 2e6925a5359b9245b518804e20f1bbd5c1dbe2bb /configure | |
parent | e99ec7b60abf87da847e5dd03c1992d585dc7585 (diff) | |
download | slibtool-14aaab17e7e44a3000266169df13e42d7b421ade.tar.bz2 slibtool-14aaab17e7e44a3000266169df13e42d7b421ade.tar.xz |
build system: configure: replace echo with printf.
Diffstat (limited to 'configure')
-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" |