Replace "echo -en" with "printf" in autoconf script

Fixes summary output on FreeBSD.
This commit is contained in:
Cacodemon345 2021-02-14 00:42:37 +06:00 committed by Sam Lantinga
parent 67a9d6ba98
commit 88f1c2c1b0
1 changed files with 1 additions and 1 deletions

View File

@ -4597,6 +4597,6 @@ if test x$WARN_ABOUT_ARM_NEON_ASM_MIT = xyes; then
SUMMARY="${SUMMARY}\n --disable-arm-neon\n"
fi
AC_CONFIG_COMMANDS([summary], [echo -en "$SUMMARY"], [SUMMARY="$SUMMARY"])
AC_CONFIG_COMMANDS([summary], [printf "$SUMMARY"], [SUMMARY="$SUMMARY"])
AC_OUTPUT