Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) New commits: commit 102d87fc3619368af903523108188680c07b6d0d Author: Stephan Bergmann <sberg...@redhat.com> Date: Wed Jun 29 15:03:13 2016 +0200
Fix inconsistent dependencies of "make $MODULE" vs. "make $MODULE.build" etc. ...where the latter failed to rebuild compilerplugins if necessary, while the former did. (No idea about the proper dependencies of "make $MODULE.showdeliverables".) Change-Id: Ib6f8e193445229745475aa52eb7a78ebb30e49e5 diff --git a/Makefile.in b/Makefile.in index 6997756..2fb1f5f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -88,7 +88,10 @@ define gb_Top_GbuildModuleRules $(1): bootstrap fetch cd $(SRCDIR)/$(2) && $$(MAKE) $(IWYU_OPTION) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) -$(1).build $(1).check $(1).clean $(1).showdeliverables $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)): +$(1).build $(1).check $(foreach target,$(gb_Top_MODULE_CHECK_TARGETS),$(1).$(target)): bootstrap fetch + cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@) + +$(1).clean $(1).showdeliverables: cd $(SRCDIR)/$(2) && $$(MAKE) $(PARALLELISM_OPTION) $(GMAKE_OPTIONS) $$(patsubst $(1).%,%,$$@) $(1).all: bootstrap fetch _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits