mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1230355 - Remove include_deps. r=mshal
We used to use include_deps to trigger a fast-path in pymake, but we don't use pymake anymore, so we can use normal includes now.
This commit is contained in:
parent
947d79078e
commit
6fa5f257bd
@ -41,8 +41,6 @@ endif
|
||||
endif
|
||||
endif # WINNT
|
||||
|
||||
include_deps = $(eval $(if $(2),,-)include $(1))
|
||||
|
||||
ifndef INCLUDED_AUTOCONF_MK
|
||||
default::
|
||||
else
|
||||
|
@ -1296,7 +1296,7 @@ ifneq (,$(filter-out all chrome default export realchrome clean clobber clobber_
|
||||
MDDEPEND_FILES := $(strip $(wildcard $(addprefix $(MDDEPDIR)/,$(addsuffix .pp,$(notdir $(sort $(OBJS) $(PROGOBJS) $(HOST_OBJS) $(HOST_PROGOBJS)))))))
|
||||
|
||||
ifneq (,$(MDDEPEND_FILES))
|
||||
$(call include_deps,$(MDDEPEND_FILES))
|
||||
-include $(MDDEPEND_FILES)
|
||||
endif
|
||||
|
||||
endif
|
||||
@ -1304,7 +1304,7 @@ endif
|
||||
MDDEPEND_FILES := $(strip $(wildcard $(addprefix $(MDDEPDIR)/,$(EXTRA_MDDEPEND_FILES))))
|
||||
|
||||
ifneq (,$(MDDEPEND_FILES))
|
||||
$(call include_deps,$(MDDEPEND_FILES))
|
||||
-include $(MDDEPEND_FILES)
|
||||
endif
|
||||
|
||||
#############################################################################
|
||||
@ -1483,7 +1483,7 @@ $(foreach file,$(PP_TARGETS_ALL_RESULTS), \
|
||||
MDDEPEND_FILES := $(strip $(wildcard $(addprefix $(MDDEPDIR)/,$(addsuffix .pp,$(notdir $(PP_TARGETS_ALL_RESULTS))))))
|
||||
|
||||
ifneq (,$(MDDEPEND_FILES))
|
||||
$(call include_deps,$(MDDEPEND_FILES))
|
||||
-include $(MDDEPEND_FILES)
|
||||
endif
|
||||
|
||||
endif
|
||||
|
@ -45,8 +45,7 @@ codegen_dependencies := \
|
||||
$(GLOBAL_DEPS) \
|
||||
$(NULL)
|
||||
|
||||
# The 1 is to make codegen.pp not optional.
|
||||
$(call include_deps,codegen.pp,1)
|
||||
include codegen.pp
|
||||
|
||||
codegen.pp: $(codegen_dependencies)
|
||||
$(call py_action,webidl,$(srcdir))
|
||||
|
@ -710,7 +710,7 @@ class RecursiveMakeBackend(CommonBackend):
|
||||
root_mk.add_statement('compile_targets := %s' % ' '.join(sorted(
|
||||
set(self._compile_graph.keys()) | all_compile_deps)))
|
||||
|
||||
root_mk.add_statement('$(call include_deps,root-deps.mk)')
|
||||
root_mk.add_statement('include root-deps.mk')
|
||||
|
||||
with self._write_file(
|
||||
mozpath.join(self.environment.topobjdir, 'root.mk')) as root:
|
||||
|
Loading…
Reference in New Issue
Block a user