summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/modules/private/action/build/object.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/xmake/modules/private/action/build/object.lua b/xmake/modules/private/action/build/object.lua
index c9dc5cbc8..f439f0f37 100644
--- a/xmake/modules/private/action/build/object.lua
+++ b/xmake/modules/private/action/build/object.lua
@@ -131,14 +131,7 @@ function main(target, sourcebatch, opt)
local jobs = tonumber(option.get("jobs") or "4")
-- run build jobs for each source file
- local curdir = os.curdir()
runjobs("build_objects", function (index)
-
- -- force to set the current directory first because the other jobs maybe changed it
- os.cd(curdir)
-
- -- build object
_build_object(target, sourcebatch, index, opt)
-
end, {total = #sourcebatch.sourcefiles, comax = jobs})
end