Files
gentoo/sys-boot/aboot/files/aboot-respect-AR.patch
Sergei Trofimovich be93c5b3dd sys-boot/aboot: add basic cross-compilation support
Package-Manager: Portage-2.3.11, Repoman-2.3.3
2017-10-18 15:08:38 +01:00

14 lines
302 B
Diff

diff --git a/lib/Makefile b/lib/Makefile
index e3a2247..c137b53 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -13,6 +13,6 @@ libaboot.a: vsprintf.o memcpy.o memset.o string.o _setjmp.o \
__remlu.o
- ar cru $@ $?
+ $(AR) cru $@ $?
else
libaboot.a: isolib.o
- ar cru $@ $?
+ $(AR) cru $@ $?
endif