Disable parallel builds on win32 if MOZ_COVERAGE is set as it writes to .pdb files with each compile

This commit is contained in:
seawood%netscape.com 2002-08-10 14:04:58 +00:00
Родитель af0b601241
Коммит 7405bcb036
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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