From: Andre Heider Date: Thu, 14 Nov 2019 10:26:41 +0000 (+0100) Subject: mpd: fix compilation without AUDIO_SUPPORT X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=556ba181cc98591477e385f07739f939bfbc3fe5;p=feed%2Fpackages.git mpd: fix compilation without AUDIO_SUPPORT Fixes #10541 Signed-off-by: Andre Heider --- diff --git a/sound/mpd/Makefile b/sound/mpd/Makefile index f214a70a28..34f0141220 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 \