diff options
author | Andre Heider <a.heider@gmail.com> | 2019-11-14 11:26:41 +0100 |
---|---|---|
committer | Andre Heider <a.heider@gmail.com> | 2019-11-14 11:30:45 +0100 |
commit | 556ba181cc98591477e385f07739f939bfbc3fe5 (patch) | |
tree | 8477656f85c9abb0f2d874e876d1cfab9ad8e935 | |
parent | 94e0c78826b15c95c40bfa82bbf8bba35dc56961 (diff) |
mpd: fix compilation without AUDIO_SUPPORT
Fixes #10541
Signed-off-by: Andre Heider <a.heider@gmail.com>
-rw-r--r-- | sound/mpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mpd/Makefile b/sound/mpd/Makefile index f214a70a2..34f014122 100644 --- a/sound/mpd/Makefile +++ b/sound/mpd/Makefile @@ -148,7 +148,7 @@ MESON_ARGS += \ -Dwave_encoder=true \ -Dlibsamplerate=disabled \ -Dsoxr=disabled \ - -Dalsa=$(if CONFIG_AUDIO_SUPPORT,enabled,disabled) \ + -Dalsa=$(if $(CONFIG_AUDIO_SUPPORT),enabled,disabled) \ -Dao=disabled \ -Dhttpd=true \ -Djack=disabled \ |