Fix 'make -jX clean release'

This commit is contained in:
Tim Angus 2013-03-26 20:58:55 +00:00
parent 12115c28cd
commit 946c89b5f1
1 changed files with 5 additions and 0 deletions

View File

@ -2747,3 +2747,8 @@ endif
release targets \
toolsclean toolsclean2 toolsclean-debug toolsclean-release \
$(OBJ_D_FILES) $(TOOLSOBJ_D_FILES)
# If the target name contains "clean", don't do a parallel build
ifneq ($(findstring clean, $(MAKECMDGOALS)),)
.NOTPARALLEL:
endif