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 | a62e368da1ddb8fe6f0c4024a0dcce6375861bdc (patch) | |
tree | 89f0d8fdba7f905de6bb200c9aa349ddca982566 | |
parent | d8206ce36eb306781fca4598d677143d5aa7493a (diff) | |
download | mmglue-a62e368da1ddb8fe6f0c4024a0dcce6375861bdc.tar.bz2 mmglue-a62e368da1ddb8fe6f0c4024a0dcce6375861bdc.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" |