From 25fe0795906dbe9d594f7dca514eabb66a4ad0b5 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Sun, 22 Nov 2009 23:51:50 +0000 Subject: Fix a shell lack-of-quoting error (--enable-sndio). --- m4/audio_out.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/audio_out.m4 b/m4/audio_out.m4 index 4edb4b691..569d72cc2 100644 --- a/m4/audio_out.m4 +++ b/m4/audio_out.m4 @@ -233,7 +233,7 @@ AC_DEFUN([XINE_AUDIO_OUT_PLUGINS], [ AC_ARG_ENABLE([sndio], [AS_HELP_STRING([--without-sndio], [Build without sndio support])], [test x"$enableval" != x"no" && enable_sndio="yes"], - [test $default_enable_sndio = disable && enable_sndio="no"]) + [test x"$default_enable_sndio" = x"disable" && enable_sndio="no"]) if test "x$enable_sndio" != "xno"; then AC_CHECK_LIB([sndio], [sio_open], [SNDIO_LIBS=-lsndio; have_sndio=yes], [have_sndio=no]) -- cgit v1.2.3