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:
parent
6d5950bbe7
commit
6f0926ff3f
|
@ -641,7 +641,7 @@ if test x$enable_ao = xno &&
|
|||
test x$enable_osx = xno &&
|
||||
test x$enable_pulse = xno &&
|
||||
test x$enable_mvp = xno; then
|
||||
AC_MSG_ERROR("No Audio Output types configured!")
|
||||
AC_MSG_ERROR([No Audio Output types configured!])
|
||||
fi
|
||||
|
||||
echo " File Format Support:"
|
||||
|
@ -714,7 +714,7 @@ if
|
|||
test x$enable_aac = xno &&
|
||||
test x$enable_mpc = xno &&
|
||||
test x$enable_mod = xno; then
|
||||
AC_MSG_ERROR("No input plugins supported!")
|
||||
AC_MSG_ERROR([No input plugins supported!])
|
||||
fi
|
||||
|
||||
echo ""
|
||||
|
|
Loading…
Reference in New Issue