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 | 668aa68ec17644d3a2fb2e9b82f8cb191b420102 (patch) | |
tree | e9fcdf0ab9185127bd4689402095c9f5d5c1ad45 /configure | |
parent | f320a31c417c4af8f83aec8575609edb7694d660 (diff) | |
download | mdso-668aa68ec17644d3a2fb2e9b82f8cb191b420102.tar.bz2 mdso-668aa68ec17644d3a2fb2e9b82f8cb191b420102.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" |