From: Bradley Sepos Date: Sun, 25 Aug 2019 06:21:19 +0000 (-0400) Subject: contrib: Use `ranlib` instead of `ar s` to fix building on Ubuntu 19.10 and Debian... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6258ed52d62e32fffdef8d0a9e37b5f325e09a59;p=handbrake contrib: Use `ranlib` instead of `ar s` to fix building on Ubuntu 19.10 and Debian Sid Unstable. Fixes #2272. --- diff --git a/contrib/x265/module.defs b/contrib/x265/module.defs index 50cd72c56..0a1cd385a 100644 --- a/contrib/x265/module.defs +++ b/contrib/x265/module.defs @@ -52,5 +52,5 @@ define X265.LINK for a in $(X265.SOURCE.libs); do \ ($(RM.exe) -rf "$$a"_o && $(MKDIR.exe) -p "$$a"_o && $(AR.exe) x "$$a" && $(MV.exe) *$(X265.O.ext) "$$a"_o && $(AR.exe) cq $@ "$$a"_o/*$(X265.O.ext)); \ done - $(AR.exe) s $@ + $(RANLIB.exe) $@ endef