diff options
author | Max Kellermann <max@duempel.org> | 2009-07-17 17:50:55 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-07-17 17:50:55 +0200 |
commit | c8c91d9aaab1ea428fa4bafeb72775642e98603a (patch) | |
tree | d4eeadcd0cbae11a2f437b624ce4103cd9e4d674 | |
parent | 19f1bfdf40ec7143c7fc3d5d2c330bec8a0bc967 (diff) | |
download | mpd-c8c91d9aaab1ea428fa4bafeb72775642e98603a.tar.gz mpd-c8c91d9aaab1ea428fa4bafeb72775642e98603a.tar.xz mpd-c8c91d9aaab1ea428fa4bafeb72775642e98603a.zip |
configure.ac: fix the --enable-alsa help string
--enable means "enable", not "disable".
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 96a890c0e..43c8d18dc 100644 --- a/configure.ac +++ b/configure.ac @@ -591,8 +591,7 @@ dnl audio output plugins dnl AC_ARG_ENABLE(alsa, - AS_HELP_STRING([--enable-alsa], - [disable ALSA support]),, + AS_HELP_STRING([--enable-alsa], [enable ALSA support]),, enable_alsa=auto) AC_ARG_ENABLE(ao, |