From patchwork Tue Jan 8 18:04:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: wavpack: fix the iconv breakage ghost Date: Tue, 08 Jan 2013 08:04:31 -0000 From: Gustavo Zacarias X-Patchwork-Id: 210465 Message-Id: <1357668271-23025-1-git-send-email-gustavo@zacarias.com.ar> To: buildroot@busybox.net Fix missing comma in DEPENDENCIES, causing to pull in libiconv when it wasn't necessary and causing other packages to go crazy on (e)glibc toolchains which don't need it with libiconv being present. Fixes: http://autobuild.buildroot.org/results/e0ce086a33a1db6fee77f43356e4e94ed6941f17 Signed-off-by: Gustavo Zacarias --- package/multimedia/wavpack/wavpack.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/package/multimedia/wavpack/wavpack.mk b/package/multimedia/wavpack/wavpack.mk index cd9b4f7..a7c703f 100644 --- a/package/multimedia/wavpack/wavpack.mk +++ b/package/multimedia/wavpack/wavpack.mk @@ -10,7 +10,7 @@ WAVPACK_SOURCE = wavpack-$(WAVPACK_VERSION).tar.bz2 WAVPACK_INSTALL_STAGING = YES # configure not up to date WAVPACK_AUTORECONF = YES -WAVPACK_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),libiconv) +WAVPACK_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),,libiconv) WAVPACK_LICENSE = BSD-3c WAVPACK_LICENSE_FILES = license.txt