configure.ac: replace double quotes AC_MSG_ERROR with brackets

double quotes are printed out in the corresponding shell code

git-svn-id: https://svn.musicpd.org/mpd/trunk@4770 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Eric Wong 2006-09-13 08:03:37 +00:00
parent 6d5950bbe7
commit 6f0926ff3f
1 changed files with 2 additions and 2 deletions

View File

@ -641,7 +641,7 @@ if test x$enable_ao = xno &&
test x$enable_osx = xno && test x$enable_osx = xno &&
test x$enable_pulse = xno && test x$enable_pulse = xno &&
test x$enable_mvp = xno; then test x$enable_mvp = xno; then
AC_MSG_ERROR("No Audio Output types configured!") AC_MSG_ERROR([No Audio Output types configured!])
fi fi
echo " File Format Support:" echo " File Format Support:"
@ -714,7 +714,7 @@ if
test x$enable_aac = xno && test x$enable_aac = xno &&
test x$enable_mpc = xno && test x$enable_mpc = xno &&
test x$enable_mod = xno; then test x$enable_mod = xno; then
AC_MSG_ERROR("No input plugins supported!") AC_MSG_ERROR([No input plugins supported!])
fi fi
echo "" echo ""