diff options
author | Max Kellermann <max@duempel.org> | 2014-11-24 18:27:04 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-11-24 18:27:04 +0100 |
commit | dd3752956ae24af22a924e156b55227b22470c3e (patch) | |
tree | d82685e8717cc5beb281ce41c1cf8f8a0c87bb05 /m4/mpd_auto.m4 | |
parent | bf15cac980fe34a06aa49072f35c67d787df9fe3 (diff) |
m4/mpd_auto.m4: fix inverted assignment after auto-detection
Broken by commit cdbdcec
Diffstat (limited to 'm4/mpd_auto.m4')
-rw-r--r-- | m4/mpd_auto.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/mpd_auto.m4 b/m4/mpd_auto.m4 index a851afd4a..aceca2fac 100644 --- a/m4/mpd_auto.m4 +++ b/m4/mpd_auto.m4 @@ -1,7 +1,7 @@ AC_DEFUN([MPD_AUTO_ENABLED], [ if test x$[]enable_$1 = xauto; then AC_MSG_NOTICE([auto-detected $2]) - enable_$1=no + enable_$1=yes fi ]) |