From bcff8e21b1bb360c3cf1e1d2e1a2a54ec7581720 Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 24 Sep 2019 11:01:19 +0800 Subject: build: only pass --disable-dependency-tracking to packages that understand it By blanket passing --disable-dependency-tracking to all depends packages we end up with some warnings like: configure: WARNING: unrecognized options: --disable-dependency-tracking So instead, only pass it to packages that understand it. Related to https://github.com/bitcoin/bitcoin/issues/16354. --- depends/packages/libXau.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'depends/packages/libXau.mk') diff --git a/depends/packages/libXau.mk b/depends/packages/libXau.mk index 058416f793..0b83f46834 100644 --- a/depends/packages/libXau.mk +++ b/depends/packages/libXau.mk @@ -8,7 +8,7 @@ $(package)_dependencies=xproto # When updating this package, check the default value of # --disable-xthreads. It is currently enabled. define $(package)_set_vars - $(package)_config_opts=--disable-shared --disable-lint-library --without-lint + $(package)_config_opts=--disable-shared --disable-lint-library --without-lint --disable-dependency-tracking $(package)_config_opts_linux=--with-pic endef -- cgit v1.2.3