summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2019-10-26 19:38:54 +0000
committermidipix <writeonce@midipix.org>2019-10-26 19:40:33 +0000
commitf90f5d8a3a63762c9a8973d4bc4910f6dfa7b95f (patch)
treec0b7e9bdcd61f57e2fedb8822039f8efcb91cd60 /configure
parent51f3955f81fa96d340bc04028089ad80ecae3a00 (diff)
downloadapimagic-f90f5d8a3a63762c9a8973d4bc4910f6dfa7b95f.tar.bz2
apimagic-f90f5d8a3a63762c9a8973d4bc4910f6dfa7b95f.tar.xz
build system: configure: replace echo with printf.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 60a3ddb..24230a0 100755
--- a/configure
+++ b/configure
@@ -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"