summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorBradley Sepos <[email protected]>2019-08-25 02:21:19 -0400
committerBradley Sepos <[email protected]>2019-08-25 03:05:45 -0400
commit6258ed52d62e32fffdef8d0a9e37b5f325e09a59 (patch)
tree7bc1f83f7b9ddf925acd9cba1cb08d925b15f9f6 /contrib
parent0d4715ae7820a0482d4f71770d0e134679fb9b7f (diff)
contrib: Use `ranlib` instead of `ar s` to fix building on Ubuntu 19.10 and Debian Sid Unstable.
Fixes #2272.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/x265/module.defs2
1 files changed, 1 insertions, 1 deletions
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