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 | 13b1e6dfba824d52f2dc1f2bb318b5c4c14f6d2f (patch) | |
tree | 7b6f29d871e6b2324877e9ca213d9fbed8479fe9 | |
parent | cc2e3f32c3298729f5824c0449aa8cc564a99647 (diff) | |
download | sbpython3-13b1e6dfba824d52f2dc1f2bb318b5c4c14f6d2f.tar.bz2 sbpython3-13b1e6dfba824d52f2dc1f2bb318b5c4c14f6d2f.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" |