commit c8f1b2b548d1ca0f577e3005ce3514cddd6f491f
parent 3cfd13e2a61db4f1afb19e94eab010dd8f8facd3
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Tue, 21 Feb 2017 10:07:41 +0100
[libc] Use AR variable in the Makefile
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/src/Makefile b/libc/src/Makefile
@@ -12,7 +12,7 @@ LIBCOBJ = assert.o strcpy.o strcmp.o strlen.o strchr.o \
all: libc.a
libc.a: $(LIBCOBJ)
- ar $(ARFLAGS) $@ $?
+ $(AR) $(ARFLAGS) $@ $?
ranlib $@
clean: