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

This commit is contained in:
benjamin%smedbergs.us 2007-07-25 13:56:04 +00:00
Родитель d472bdea7a
Коммит de3c23a739
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.