From: Gustavo Zacarias Date: Fri, 7 Feb 2014 13:24:45 +0000 (-0300) Subject: mpd: fix vorbis build failure X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52ec2e54e6f397901fb11e47afa47e0d1be9a5a6;p=buildroot.git mpd: fix vorbis build failure Forcibly disable the vorbis encoder support when the vorbis option isn't enabled to avoid autodetection. Said autodetection has a build bug that it won't properly set libvorbis build options when the decoder is disabled. Fixes: http://autobuild.buildroot.net/results/a46/a46b4c97fe126b23a96051a8bf1243a7f4935434/ Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/mpd/mpd.mk b/package/mpd/mpd.mk index 4a7926cd61..6bdb149712 100644 --- a/package/mpd/mpd.mk +++ b/package/mpd/mpd.mk @@ -91,7 +91,7 @@ endif ifeq ($(BR2_PACKAGE_MPD_VORBIS),y) MPD_DEPENDENCIES += libvorbis else -MPD_CONF_OPT += --disable-vorbis +MPD_CONF_OPT += --disable-vorbis --disable-vorbis-encoder endif ifeq ($(BR2_PACKAGE_MPD_MPG123),y)