diff options
author | Tony Theodore <tonyt@logyst.com> | 2015-10-27 10:29:47 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2015-10-27 10:29:47 (GMT) |
commit | 6b1a7962cfb387798899d63c0c6d33431b279906 (patch) | |
tree | 03a01b32bb2fe734788e6ba5cc61776cb7462880 /Makefile | |
parent | ba7c553c66ee9e76792613feb00054eda48b8539 (diff) | |
download | mxe-6b1a7962cfb387798899d63c0c6d33431b279906.zip mxe-6b1a7962cfb387798899d63c0c6d33431b279906.tar.gz mxe-6b1a7962cfb387798899d63c0c6d33431b279906.tar.bz2 |
Makefile: filter out MXE_CONF_PKGS for inter-target deps
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -410,7 +410,7 @@ $(PREFIX)/$(3)/installed/$(1): $(TOP_DIR)/src/$(1).mk \ $(PATCHES) \ $(wildcard $(TOP_DIR)/src/$(1)-test*) \ $(addprefix $(PREFIX)/$(3)/installed/,$(value $(call LOOKUP_PKG_RULE,$(1),DEPS,$(3)))) \ - $(and $($(3)_DEPS),$(addprefix $(PREFIX)/$($(3)_DEPS)/installed/,$($($(3)_DEPS)_PKGS))) \ + $(and $($(3)_DEPS),$(addprefix $(PREFIX)/$($(3)_DEPS)/installed/,$(filter-out $(MXE_CONF_PKGS),$($($(3)_DEPS)_PKGS)))) \ | $(if $(DONT_CHECK_REQUIREMENTS),,check-requirements) \ $(if $(value $(call LOOKUP_PKG_RULE,$(1),URL,$(3))),download-only-$(1)) \ $(addprefix $(PREFIX)/$(3)/installed/,$(if $(call set_is_not_member,$(1),$(MXE_CONF_PKGS)),$(MXE_CONF_PKGS))) |