From 556ba181cc98591477e385f07739f939bfbc3fe5 Mon Sep 17 00:00:00 2001 From: Andre Heider Date: Thu, 14 Nov 2019 11:26:41 +0100 Subject: [PATCH] mpd: fix compilation without AUDIO_SUPPORT Fixes #10541 Signed-off-by: Andre Heider --- sound/mpd/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \