[vlc-devel] [PATCH] tools: use sha512sum which is the same requirement as the contribs

Steve Lhomme robux4 at ycbcr.xyz
Fri Jul 20 09:06:31 CEST 2018


shasum is not available on the latest msys2
---
 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 8a86c32de4..299e1a66a1 100644
--- a/extras/tools/tools.mak
+++ b/extras/tools/tools.mak
@@ -26,7 +26,7 @@ endif
 
 download_pkg = $(call download,$(VIDEOLAN)/$(2)/$(lastword $(subst /, ,$(@)))) || \
 	( $(call download,$(1)) && echo "Please upload package $(lastword $(subst /, ,$(@))) to our FTP" )  \
-	&& grep $(@) SHA512SUMS| shasum -a 512 -c
+	&& grep $(@) SHA512SUMS| sha512sum -c
 
 UNPACK = $(RM) -R $@ \
     $(foreach f,$(filter %.tar.gz %.tgz,$^), && tar xvzf $(f)) \
-- 
2.17.0



More information about the vlc-devel mailing list