From 42cb4d31bb70e4093cc5303b1c6630e974fd7ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Thu, 17 Feb 2022 20:41:29 +0100 Subject: [PATCH] build: Remove pefixup invocation for module rule too. --- Makefile.in | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Makefile.in b/Makefile.in index 58d13907..2e44b303 100644 --- a/Makefile.in +++ b/Makefile.in @@ -395,16 +395,12 @@ redist: dist | $(filter-out dist deploy install redist,$(MAKECMDGOALS)) module32: private SHELL := $(CONTAINER_SHELL) module32: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure32 module32: | all-source wine-configure32 - +$(MAKE) -j$(J) $(filter -j%,$(MAKEFLAGS)) $(MFLAGS) $(MAKEOVERRIDES) -C $(WINE_OBJ32)/dlls/$(module) && \ - find $(WINE_OBJ32)/dlls/$(module) -type f \( -name '*.dll' -o -name '*.drv' \) -printf '%p\0' | \ - xargs $(--verbose?) -0 -r -P$(J) -n1 $(SRC)/make/pefixup.py + +$(MAKE) -j$(J) $(filter -j%,$(MAKEFLAGS)) $(MFLAGS) $(MAKEOVERRIDES) -C $(WINE_OBJ32)/dlls/$(module) module64: private SHELL := $(CONTAINER_SHELL) module64: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure64 module64: | all-source wine-configure64 - +$(MAKE) -j$(J) $(filter -j%,$(MAKEFLAGS)) $(MFLAGS) $(MAKEOVERRIDES) -C $(WINE_OBJ64)/dlls/$(module) && \ - find $(WINE_OBJ64)/dlls/$(module) -type f \( -name '*.dll' -o -name '*.drv' \) -printf '%p\0' | \ - xargs $(--verbose?) -0 -r -P$(J) -n1 $(SRC)/make/pefixup.py + +$(MAKE) -j$(J) $(filter -j%,$(MAKEFLAGS)) $(MFLAGS) $(MAKEOVERRIDES) -C $(WINE_OBJ64)/dlls/$(module) module: CONTAINERGOALS := $(CONTAINERGOALS) wine-configure module: | all-source wine-configure