mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-23 09:47:30 -08:00
- EAPI7 - Drop USE="system-uulib" due to being completely broken and unfixable - Fix directly calling `ar` and inherit Perl's `ar` - Attempt to correct a dizzying array of license terms Upstream: - Fix heap overflow - Fix format string type missmatches - Simplify code in _FP_gets to not use fscanf for performance - Backport code to c89 - Add GetFileList - experimental perlmulticore support - Speedup yEnc encoding using slice-by-16 instead of crc32 Bug: https://bugs.gentoo.org/559930 Bug: https://bugs.gentoo.org/723216 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Kent Fredric <kentnl@gentoo.org>
26 lines
542 B
Diff
26 lines
542 B
Diff
From 8a250730c8d73feea322f5a5beeaa16cbaa05d3a Mon Sep 17 00:00:00 2001
|
|
From: Kent Fredric <kentnl@gentoo.org>
|
|
Date: Fri, 22 May 2020 04:58:39 +1200
|
|
Subject: Fix direct calling of ar
|
|
|
|
---
|
|
uulib/Makefile.in | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/uulib/Makefile.in b/uulib/Makefile.in
|
|
index 06a820d..65bae91 100644
|
|
--- a/uulib/Makefile.in
|
|
+++ b/uulib/Makefile.in
|
|
@@ -69,7 +69,7 @@ new: clean
|
|
|
|
libuu.a: $(UULIB_OBJ)
|
|
rm -f $@
|
|
- ar r $@ $(UULIB_OBJ)
|
|
+ $(AR) r $@ $(UULIB_OBJ)
|
|
-$(RANLIB) $@
|
|
|
|
.c.o:
|
|
--
|
|
2.26.2
|
|
|