removed a no longer needed make pch race condition fix

This commit is contained in:
R. Blaine Whittle 2017-09-19 15:08:10 -07:00 committed by Tom van Dijck
parent 0f8d5ed4c6
commit e569700eb7

View File

@ -93,22 +93,6 @@
_p('# %s %s makefile autogenerated by Premake', p.action.current().shortname, kind)
_p('')
if kind == "workspace" then
local haspch = false
for _, prj in ipairs(target.projects) do
for cfg in project.eachconfig(prj) do
if cfg.pchheader then
haspch = true
end
end
end
if haspch then
_p('.NOTPARALLEL:')
_p('')
end
end
gmake2.defaultconfig(target)
_p('ifndef verbose')