lib.mk: Remove incorrect u flag from ar

We work in deterministic mode by default, so timestamps are zeroed,
thus it is impossible to check timestamps and insert only newer
members. Silences the following autotools warning:

ar: `u' modifier ignored since `D' is the default (see `U')

https://sourceware.org/binutils/docs/binutils/ar-cmdline.html
This commit is contained in:
NotTsunami
2019-11-19 15:49:40 -05:00
committed by Erik de Castro Lopo
parent 3bb5d8cd76
commit 1640e10e43

View File

@@ -38,7 +38,7 @@ ifeq ($(CC),gcc)
GCC_INLINE = -finline-functions GCC_INLINE = -finline-functions
endif endif
NASM = nasm NASM = nasm
LINK = ar cru LINK = ar cr
OBJPATH = $(topdir)/objs OBJPATH = $(topdir)/objs
LIBPATH = $(OBJPATH)/$(BUILD)/lib LIBPATH = $(OBJPATH)/$(BUILD)/lib
DEBUG_LIBPATH = $(OBJPATH)/debug/lib DEBUG_LIBPATH = $(OBJPATH)/debug/lib