From patchwork Tue Jan 8 18:04:31 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 210465 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 05EF02C0085 for ; Wed, 9 Jan 2013 05:04:46 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0F6D7101D2C; Tue, 8 Jan 2013 18:04:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ehNddoNUO6P9; Tue, 8 Jan 2013 18:04:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E07D5FFD74; Tue, 8 Jan 2013 18:04:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 7F6D28F753 for ; Tue, 8 Jan 2013 18:04:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4DE6D8C582 for ; Tue, 8 Jan 2013 18:04:41 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id R4haECRtn7Vw for ; Tue, 8 Jan 2013 18:04:40 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 44B0D8C536 for ; Tue, 8 Jan 2013 18:04:40 +0000 (UTC) Received: from asgard (host212.200-82-114.telecom.net.ar [200.82.114.212]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id r08I4XSJ014900 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 8 Jan 2013 18:04:35 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1357668277; bh=pLUegvPOIpuMCI5OFb6OpxVreh8mq0C7ZnJ5er74dZ8=; h=From:To:Cc:Subject:Date; b=tPo8kdaG0DfF4zMAz2DZv82dHriDgzSYH1SuCbalzFksCM1TlT/ntj/vJjmVd/Bo5 O+y00wpu/WztNqg9x1wn5lk6pUZig55URnPpzJfk3Bg1XFIgIiTOlrU1lP7fYYedcc JGVJVm9n362kN40uk5cA8j4j3v/CeI83+HJDEbOE= Received: by asgard (sSMTP sendmail emulation); Tue, 08 Jan 2013 15:04:32 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 8 Jan 2013 15:04:31 -0300 Message-Id: <1357668271-23025-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.5 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] wavpack: fix the iconv breakage ghost X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@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