Commit 6f0926ff authored by Eric Wong's avatar Eric Wong

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
parent 6d5950bb
...@@ -641,7 +641,7 @@ if test x$enable_ao = xno && ...@@ -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 ...@@ -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 ""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment