From patchwork Sat Dec 29 13:06:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 208658 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 DC1EF2C00B1 for ; Sun, 30 Dec 2012 00:06:25 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D6CD210078D; Sat, 29 Dec 2012 13:06:14 +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 OI7LDIG+T2sG; Sat, 29 Dec 2012 13:06:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id ED25F101470; Sat, 29 Dec 2012 13:06:12 +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 31F7D8F753 for ; Sat, 29 Dec 2012 13:06:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4EC698AA2E for ; Sat, 29 Dec 2012 13:06:21 +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 7dw2iIRGR1iY for ; Sat, 29 Dec 2012 13:06:20 +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 CEF6F8A9F6 for ; Sat, 29 Dec 2012 13:06:19 +0000 (UTC) Received: from asgard (host204.190-231-107.telecom.net.ar [190.231.107.204]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id qBTD6C9k008589 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 29 Dec 2012 13:06:15 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1356786377; bh=NbU75fq3HiPKbvev3Rfpatrza2ds7u9ThqHQIRe7dmk=; h=From:To:Cc:Subject:Date; b=MgZoOtUP5VRQmtd4hjxdV/OIgPCYXZOfKz5ADWFwVdTnNn5rv0dyArHEkAgyorP9A Va+bE/eTk3CLh2Z/8srrycp2qc7QdzJJR5DHjMiWlUtLH4beQLx+70ptyLXqAxqcmL KFQVsQDOICwv9ljOQDPrE6V2ZhPrjdsfKBCTdjQ0= Received: by asgard (sSMTP sendmail emulation); Sat, 29 Dec 2012 10:06:11 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sat, 29 Dec 2012 10:06:11 -0300 Message-Id: <1356786371-12126-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] [PATCHv2] wavpack: fix broken link on newer binutils 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 Newer versions of binutils (2.22+) default to --no-copy-dt-needed hence all the used libraries must be explicitly named. This is accounted for in the source configure script but not in the compiled form so we just need to autoreconf it. Signed-off-by: Gustavo Zacarias --- package/multimedia/wavpack/wavpack.mk | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/multimedia/wavpack/wavpack.mk b/package/multimedia/wavpack/wavpack.mk index 4b1c59e..ad1ce1b 100644 --- a/package/multimedia/wavpack/wavpack.mk +++ b/package/multimedia/wavpack/wavpack.mk @@ -8,9 +8,9 @@ WAVPACK_VERSION = 4.60.1 WAVPACK_SITE = http://www.wavpack.com WAVPACK_SOURCE = wavpack-$(WAVPACK_VERSION).tar.bz2 WAVPACK_INSTALL_STAGING = YES - -ifneq ($(BR2_ENABLE_LOCALE),y) -WAVPACK_DEPENDENCIES += libiconv -endif +WAVPACK_AUTORECONF = YES +WAVPACK_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),libiconv) +WAVPACK_LICENSE = BSD-3c +WAVPACK_LICENSE_FILES = license.txt $(eval $(autotools-package))