From 8ec707122538b63e48eb90d3c0f44babd29217b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Fri, 2 Apr 2021 12:51:31 +0200 Subject: [PATCH] build: Make sure that module target triggers wine-configure. --- build/makefile_base.mak | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build/makefile_base.mak b/build/makefile_base.mak index e91566d3..ce6b8c50 100644 --- a/build/makefile_base.mak +++ b/build/makefile_base.mak @@ -352,13 +352,17 @@ redist: dist | $(filter-out dist deploy install redist,$(MAKECMDGOALS)) .PHONY: module32 module64 module module32: private SHELL := $(CONTAINER_SHELL) -module32: all-source +module32: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure32 +module32: | all-source wine-configure32 +$(MAKE) -C $(WINE_OBJ32)/dlls/$(module) module64: private SHELL := $(CONTAINER_SHELL) -module64: all-source +module64: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure64 +module64: | all-source wine-configure64 +$(MAKE) -C $(WINE_OBJ64)/dlls/$(module) +module: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure +module: | all-source wine-configure module: module32 module64 endif # ifeq ($(CONTAINER),)