Skip to content

Commit

Permalink
Disable parallel builds on win32 if MOZ_COVERAGE is set as it writes …
Browse files Browse the repository at this point in the history
…to .pdb files with each compile
  • Loading branch information
seawood%netscape.com committed Aug 10, 2002
1 parent 47eef22 commit a49eb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -1869,7 +1869,7 @@ FORCE:
# so the files must be built serially
# This requires a recent version of gmake
ifeq ($(OS_ARCH),WINNT)
ifneq (,$(MOZ_DEBUG)$(MOZ_PROFILE))
ifneq (,$(MOZ_DEBUG)$(MOZ_PROFILE)$(MOZ_COVERAGE))
.NOTPARALLEL::
endif
endif
Expand Down

0 comments on commit a49eb7b

Please sign in to comment.