aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-26 22:03:26 +0100
committerMax Kellermann <max@duempel.org>2008-10-26 22:03:26 +0100
commit355108666c89bf2a637610b0f7a81974d1f312e4 (patch)
tree26afa505c38a869b98da899c15af7941d4a272e8 /configure.ac
parent0800c6f4ca36012b65e3cde825663adc1eafeae2 (diff)
downloadmpd-355108666c89bf2a637610b0f7a81974d1f312e4.tar.gz
mpd-355108666c89bf2a637610b0f7a81974d1f312e4.tar.xz
mpd-355108666c89bf2a637610b0f7a81974d1f312e4.zip
configure.ac: fix "xyes: command not found"
Due to a missing "test", the "xyes" token was interpreted as a command.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ee129f5ac..0fbb4f16c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -336,7 +336,7 @@ if test x$enable_curl = xyes; then
fi
AM_CONDITIONAL(HAVE_CURL, test x$enable_curl = xyes)
-if test x$enable_shout_ogg = xyes || x$enable_shout_mp3 = xyes; then
+if test x$enable_shout_ogg = xyes || test x$enable_shout_mp3 = xyes; then
enable_shout=yes
PKG_CHECK_MODULES([SHOUT], [shout],
AC_DEFINE(HAVE_SHOUT, 1, [Define to enable libshout support]),