diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-11-22 23:51:50 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2009-11-22 23:51:50 +0000 |
commit | 25fe0795906dbe9d594f7dca514eabb66a4ad0b5 (patch) | |
tree | 8976acc3c9b933d069a2554944292fd46494e2fc | |
parent | fd7db10fedd5d3b7952c4785bec11c2692090cfb (diff) | |
download | xine-lib-25fe0795906dbe9d594f7dca514eabb66a4ad0b5.tar.gz xine-lib-25fe0795906dbe9d594f7dca514eabb66a4ad0b5.tar.bz2 |
Fix a shell lack-of-quoting error (--enable-sndio).
-rw-r--r-- | m4/audio_out.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |