diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-02-13 11:55:56 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-17 22:48:48 +0100 |
commit | 933e0ffe2ca1613e7b98deac61d8f3a94485b712 (patch) | |
tree | 0934156fb2b3f6668d85f9c2b515acfe1dbfed93 | |
parent | c111e4a3920fda9d300d211643d22bf7c06720d6 (diff) | |
download | buildroot-novena-933e0ffe2ca1613e7b98deac61d8f3a94485b712.tar.gz buildroot-novena-933e0ffe2ca1613e7b98deac61d8f3a94485b712.zip |
libvorbis: fix LIBVORBIS_SITE
The LIBVORBIS_SITE included a reference to $(LIBVORBIS-SOURCE), which
doesn't exist. And anyway was useless because the <pkg>_SITE variable
should not contain the name of the tarball.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/libvorbis/libvorbis.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libvorbis/libvorbis.mk b/package/libvorbis/libvorbis.mk index ace8147c9..5b9048ead 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 |