From e72be94184d926c30b5c4d19fdf73349ef539b8b Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Tue, 7 Nov 2017 17:13:53 +0100 Subject: [PATCH] extra/tools: fix compatibility with old OSes --- extras/tools/tools.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/tools/tools.mak b/extras/tools/tools.mak index 5221a10675..c6cfa0f7a7 100644 --- a/extras/tools/tools.mak +++ b/extras/tools/tools.mak @@ -29,7 +29,7 @@ endif download_pkg = $(call download,$(VIDEOLAN)/$(2)/$(lastword $(subst /, ,$(@)))) || \ ( $(call download,$(1)) && echo "Please upload package $(lastword $(subst /, ,$(@))) to our FTP" ) \ - && sha512sum --check --ignore-missing SHA512SUMS + && grep $(@) SHA512SUMS| shasum -a 512 -c UNPACK = $(RM) -R $@ \ $(foreach f,$(filter %.tar.gz %.tgz,$^), && tar xvzf $(f)) \ -- 2.11.4.GIT