From e569700eb710b2b9f41eac3bb0e6066298a5d1c6 Mon Sep 17 00:00:00 2001 From: "R. Blaine Whittle" Date: Tue, 19 Sep 2017 15:08:10 -0700 Subject: [PATCH] removed a no longer needed make pch race condition fix --- modules/gmake2/gmake2.lua | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/modules/gmake2/gmake2.lua b/modules/gmake2/gmake2.lua index 523693e4..d66a9513 100644 --- a/modules/gmake2/gmake2.lua +++ b/modules/gmake2/gmake2.lua @@ -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')