From patchwork Wed Feb 13 21:55:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 220268 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 3B87F2C008C for ; Thu, 14 Feb 2013 08:56:20 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 35971103AE4; Wed, 13 Feb 2013 21:56:06 +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 R4St6t6vwewF; Wed, 13 Feb 2013 21:56:00 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id EEA88102459; Wed, 13 Feb 2013 21:55:53 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 6736F8F75B for ; Wed, 13 Feb 2013 21:56:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id EC089312EB for ; Wed, 13 Feb 2013 21:56:04 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id cEO1MaKnug8H for ; Wed, 13 Feb 2013 21:56:01 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by silver.osuosl.org (Postfix) with ESMTP id 244FF31242 for ; Wed, 13 Feb 2013 21:56:00 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id C558781C; Wed, 13 Feb 2013 22:55:58 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id 1639381A for ; Wed, 13 Feb 2013 22:55:58 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Wed, 13 Feb 2013 22:55:56 +0100 Message-Id: <1360792556-4732-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] libvorbis: fix LIBVORBIS_SITE 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 The LIBVORBIS_SITE included a reference to $(LIBVORBIS-SOURCE), which doesn't exist. And anyway was useless because the _SITE variable should not contain the name of the tarball. Signed-off-by: Thomas Petazzoni --- package/libvorbis/libvorbis.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libvorbis/libvorbis.mk b/package/libvorbis/libvorbis.mk index ace8147..5b9048e 100644 --- a/package/libvorbis/libvorbis.mk +++ b/package/libvorbis/libvorbis.mk @@ -6,7 +6,7 @@ LIBVORBIS_VERSION = 1.3.3 LIBVORBIS_SOURCE = libvorbis-$(LIBVORBIS_VERSION).tar.gz -LIBVORBIS_SITE = http://downloads.xiph.org/releases/vorbis/$(LIBVORBIS-SOURCE) +LIBVORBIS_SITE = http://downloads.xiph.org/releases/vorbis/ LIBVORBIS_INSTALL_STAGING = YES LIBVORBIS_CONF_OPT = --disable-oggtest LIBVORBIS_DEPENDENCIES = host-pkgconf libogg