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 | fda4a3f07804ac50ea2e35e8ba4791f95c378c22 (patch) | |
tree | 0e4b9b7e985a7b1cb7b84a60dd37ba7599e93f6f /configure | |
parent | 8a91ca32a88007a3f6150a4b88cd13d223513ec0 (diff) | |
download | bcparser-fda4a3f07804ac50ea2e35e8ba4791f95c378c22.tar.bz2 bcparser-fda4a3f07804ac50ea2e35e8ba4791f95c378c22.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" |