Add ARFLAGS

Needed to invoke deterministic mode on some archivers
This commit is contained in:
Howard Chu 2019-11-13 13:50:17 +00:00
parent 35b5e917aa
commit 024a1c7ddf
No known key found for this signature in database
GPG key ID: FD2A70B44AB11BA7
23 changed files with 89 additions and 20 deletions

View file

@ -19,11 +19,11 @@ ifneq ($(host_os),darwin)
define $(package)_config_cmds
cp -f $(BASEDIR)/config.guess config.guess &&\
cp -f $(BASEDIR)/config.sub config.sub &&\
$($(package)_autoconf)
$($(package)_autoconf) AR_FLAGS=$($(package)_arflags)
endef
else
define $(package)_config_cmds
$($(package)_autoconf)
$($(package)_autoconf) AR_FLAGS=$($(package)_arflags)
endef
endif