summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorNotTsunami <4589807+NotTsunami@users.noreply.github.com>2019-11-19 15:49:40 -0500
committerErik de Castro Lopo <erikd@mega-nerd.com>2019-11-20 14:04:42 +1100
commit1640e10e435906e7300a422c7b4c71a4094fff38 (patch)
treef470e8fb5c3cdcd0b0d5b78af06ce7e8a82c4035 /build
parent3bb5d8cd761a2bd47a1a03366e00f5c83f88fedc (diff)
downloadflac-1640e10e435906e7300a422c7b4c71a4094fff38.tar.gz
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
Diffstat (limited to 'build')
-rw-r--r--build/lib.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/lib.mk b/build/lib.mk
index 4f818e7c..12bcb410 100644
--- a/build/lib.mk
+++ b/build/lib.mk
@@ -38,7 +38,7 @@ ifeq ($(CC),gcc)
GCC_INLINE = -finline-functions
endif
NASM = nasm
-LINK = ar cru
+LINK = ar cr
OBJPATH = $(topdir)/objs
LIBPATH = $(OBJPATH)/$(BUILD)/lib
DEBUG_LIBPATH = $(OBJPATH)/debug/lib