diff options
author | David Bauer <mail@david-bauer.net> | 2020-12-07 04:53:02 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2021-01-14 01:05:48 +0100 |
commit | af49ae7d233666c294353a3cfc3bdf6fec7419fc (patch) | |
tree | 3548abb8668ca245a9998498051645d3d2eed936 | |
parent | 6738b5e2ac80ec7bcaaa47edf20d9b479550ed8e (diff) | |
download | upstream-af49ae7d233666c294353a3cfc3bdf6fec7419fc.tar.gz upstream-af49ae7d233666c294353a3cfc3bdf6fec7419fc.tar.bz2 upstream-af49ae7d233666c294353a3cfc3bdf6fec7419fc.zip |
zstd: fix package source
It looks like GitHub changed the URL path for release tarballs, thus the
download for the zstd package was always falling back to the OpenWrt
sources mirror.
Fix the GitHub URL for one which works. The file hash remains unchanged.
Signed-off-by: David Bauer <mail@david-bauer.net>
-rw-r--r-- | tools/zstd/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/zstd/Makefile b/tools/zstd/Makefile index ec85362544..4ec910d4ba 100644 --- a/tools/zstd/Makefile +++ b/tools/zstd/Makefile @@ -4,7 +4,8 @@ PKG_NAME:=zstd PKG_VERSION:=1.4.4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz -PKG_SOURCE_URL:=@GITHUB/facebook/zstd/releases/download/v$(PKG_VERSION) +PKG_SOURCE_URL_FILE:=v$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://github.com/facebook/zstd/archive/ PKG_HASH:=a364f5162c7d1a455cc915e8e3cf5f4bd8b75d09bc0f53965b0c9ca1383c52c8 PKG_LICENSE:=BSD-3-Clause |