diff options
| author | ruki <[email protected]> | 2025-04-07 22:40:03 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-04-08 15:31:58 +0800 |
| commit | 07ac1c481e0a30161389328365efcbebc15d88d9 (patch) | |
| tree | 4ad42064ae92f72e4b0bb39e2c78e4714ab6c034 | |
| parent | 3ebc4d126a43600bb33bf1a4db7ccc27e07457b9 (diff) | |
fix distcc
| -rw-r--r-- | xmake/modules/async/jobgraph.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/async/jobgraph.lua b/xmake/modules/async/jobgraph.lua index 4bbc53ff4..1ed5873b7 100644 --- a/xmake/modules/async/jobgraph.lua +++ b/xmake/modules/async/jobgraph.lua @@ -73,7 +73,7 @@ function jobgraph:add(name, run, opt) local dag = self._dag local jobs = self._jobs if not jobs[name] then - local job = {name = name, run = run, opt = opt} + local job = {name = name, run = run, distcc = opt.distcc} jobs[name] = job dag:add_vertex(job) self._size = self._size + 1 |
