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 | e1c1ac0f24edbfcd4b1233150f5d0e7bf480b4df (patch) | |
tree | 8e5e6f5eac1b9f39a7e4cca35e1c0a8501a5b8ae /configure | |
parent | 642e5fdfbd2fea29e4d01f45e3ae1683ce956863 (diff) | |
download | pemagine-e1c1ac0f24edbfcd4b1233150f5d0e7bf480b4df.tar.bz2 pemagine-e1c1ac0f24edbfcd4b1233150f5d0e7bf480b4df.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" |