aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/pretty_print.m410
1 files changed, 5 insertions, 5 deletions
diff --git a/m4/pretty_print.m4 b/m4/pretty_print.m4
index da235946..687dceef 100644
--- a/m4/pretty_print.m4
+++ b/m4/pretty_print.m4
@@ -7,13 +7,13 @@ AC_DEFUN([results], [
var="`echo '$'enable_$1`"
fi
- echo -n '('
+ printf '('
if eval "test x$var = xyes"; then
- echo -n '+'
+ printf '+'
elif test -n "$3" && eval "test x$var = x$3"; then
- echo -n '+'
+ printf '+'
else
- echo -n '-'
+ printf '-'
fi
- echo -n "$2) "
+ printf '%s) ' "$2"
])