diff options
author | Matthias Kortstiege <mkortstiege@kodi.tv> | 2015-10-29 08:26:13 +0100 |
---|---|---|
committer | Matthias Kortstiege <mkortstiege@kodi.tv> | 2015-10-29 08:29:51 +0100 |
commit | 8554b21810c1b46adc377d4cd9ee6d4e717f7d88 (patch) | |
tree | c6e1fcd7551917e0cf2c774ea52ea012c760f89d | |
parent | a6818a578c43dec8e9cd3a9cf520a87b97beedb0 (diff) |
[make] silent ar compiler warnings
In recent gnu binutils the ar binary operates in deterministic mode
by default. This is rendering the 'u' option useless and is causing
compiler warnings.
-rw-r--r-- | Makefile.include.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.include.in b/Makefile.include.in index 471933991c..510a6e0a12 100644 --- a/Makefile.include.in +++ b/Makefile.include.in @@ -1,5 +1,5 @@ AR=@AR@ -ARFLAGS=crus +ARFLAGS=crs RM=rm -rf SHELL=@SHELL@ ARCH=@ARCH@ |