btrfs-progs: makefile: drop u option from ar invocation
In newer distros (ubuntu 15.10, fedora rawhide) the binutils ar uses the new D flag per default to build deterministic binaries. Without this patch the following warning is issued, when building btrfs-progs: [AR] libbtrfs.a /usr/bin/ar: `u' modifier ignored since `D' is the default (see `U') For libtrfs.a performance benefit of the u option can be neglected, so drop the u option and silence the warning. In the future one might want to explicitly add the D option anyway. Signed-off-by: Arnd Hannemann <arnd@arndnet.de> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
59cc65a4e6
commit
afff169e1a
|
@ -199,7 +199,7 @@ $(libs_shared): $(libbtrfs_objects) $(lib_links) send.h
|
|||
|
||||
$(libs_static): $(libbtrfs_objects)
|
||||
@echo " [AR] $@"
|
||||
$(Q)$(AR) cru libbtrfs.a $(libbtrfs_objects)
|
||||
$(Q)$(AR) cr libbtrfs.a $(libbtrfs_objects)
|
||||
|
||||
$(lib_links):
|
||||
@echo " [LN] $@"
|
||||
|
|
Loading…
Reference in New Issue