diff options
| author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-02-07 10:24:45 -0300 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-07 15:15:44 +0100 |
| commit | 52ec2e54e6f397901fb11e47afa47e0d1be9a5a6 (patch) | |
| tree | 726b8df6773a34877747614d4a6a92252402188e | |
| parent | b83d57211be83314374cb09adb25b8f2d37ff3df (diff) | |
| download | buildroot-52ec2e54e6f397901fb11e47afa47e0d1be9a5a6.tar.gz buildroot-52ec2e54e6f397901fb11e47afa47e0d1be9a5a6.zip | |
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 <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/mpd/mpd.mk | 2 |
1 files changed, 1 insertions, 1 deletions
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) |

