Skip to content

Commit 3941544

Browse files
author
Junio C Hamano
committed
Merge branch 'fp/make-j'
* fp/make-j: Makefile: Add '+' to QUIET_SUBDIR0 to fix parallel make.
2 parents 5bba1b3 + 3b486cd commit 3941544

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ ifeq ($(TCLTK_PATH),)
642642
NO_TCLTK=NoThanks
643643
endif
644644

645-
QUIET_SUBDIR0 = $(MAKE) -C # space to separate -C and subdir
645+
QUIET_SUBDIR0 = +$(MAKE) -C # space to separate -C and subdir
646646
QUIET_SUBDIR1 =
647647

648648
ifneq ($(findstring $(MAKEFLAGS),w),w)
@@ -658,7 +658,7 @@ ifndef V
658658
QUIET_LINK = @echo ' ' LINK $@;
659659
QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
660660
QUIET_GEN = @echo ' ' GEN $@;
661-
QUIET_SUBDIR0 = @subdir=
661+
QUIET_SUBDIR0 = +@subdir=
662662
QUIET_SUBDIR1 = ;$(NO_SUBDIR) echo ' ' SUBDIR $$subdir; \
663663
$(MAKE) $(PRINT_DIR) -C $$subdir
664664
export V

0 commit comments

Comments
 (0)