From: Fernando J. Pereda Date: Wed, 4 Apr 2007 20:42:33 +0000 (+0200) Subject: Makefile: Add '+' to QUIET_SUBDIR0 to fix parallel make. X-Git-Tag: v1.5.2-rc0~76^2 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=3b486cd229f1db437462a45103ef01d50c47a00d;p=git.git Makefile: Add '+' to QUIET_SUBDIR0 to fix parallel make. Signed-off-by: Fernando J. Pereda Signed-off-by: Junio C Hamano --- diff --git a/Makefile b/Makefile index 507ad9103..c9a84aa25 100644 --- a/Makefile +++ b/Makefile @@ -641,7 +641,7 @@ ifeq ($(TCLTK_PATH),) NO_TCLTK=NoThanks endif -QUIET_SUBDIR0 = $(MAKE) -C # space to separate -C and subdir +QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir QUIET_SUBDIR1 = ifneq ($(findstring $(MAKEFLAGS),w),w) @@ -657,7 +657,7 @@ ifndef V QUIET_LINK = @echo ' ' LINK $@; QUIET_BUILT_IN = @echo ' ' BUILTIN $@; QUIET_GEN = @echo ' ' GEN $@; - QUIET_SUBDIR0 = @subdir= + QUIET_SUBDIR0 = +@subdir= QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \ $(MAKE) $(PRINT_DIR) -C $$subdir export V