]> granicus.if.org Git - handbrake/commitdiff
contrib: Use `ranlib` instead of `ar s` to fix building on Ubuntu 19.10 and Debian...
authorBradley Sepos <bradley@bradleysepos.com>
Sun, 25 Aug 2019 06:21:19 +0000 (02:21 -0400)
committerBradley Sepos <bradley@bradleysepos.com>
Sun, 25 Aug 2019 07:05:45 +0000 (03:05 -0400)
Fixes #2272.

contrib/x265/module.defs

index 50cd72c5685833bbae369db7fc5a7b182eb2326f..0a1cd385a7a760dfc5b4a64d8daae04a190d0f6b 100644 (file)
@@ -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