Bug 389401 - Build horked using VC71 and make -jN, r=cls

This commit is contained in:
benjamin@smedbergs.us 2007-07-25 06:56:04 -07:00
Родитель 3762a3f60d
Коммит 4639eb3dac
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -2132,6 +2132,14 @@ endif
# Special gmake rules.
################################################################################
#
# Disallow parallel builds with MSVC < 8
#
ifneq (,$(filter 1200 1300 1310,$(_MSC_VER)))
.NOTPARALLEL:
endif
#
# Re-define the list of default suffixes, so gmake won't have to churn through
# hundreds of built-in suffix rules for stuff we don't need.