diff options
Diffstat (limited to 'xmake/modules/private/service/distcc_build/server_session.lua')
| -rw-r--r-- | xmake/modules/private/service/distcc_build/server_session.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/private/service/distcc_build/server_session.lua b/xmake/modules/private/service/distcc_build/server_session.lua index 218771e03..f45d9acf0 100644 --- a/xmake/modules/private/service/distcc_build/server_session.lua +++ b/xmake/modules/private/service/distcc_build/server_session.lua @@ -99,8 +99,8 @@ function server_session:compile(respmsg) { function () local flags = body.flags - local compiler = body.compiler - os.vrunv(compiler, table.join(flags, "-o", objectfile, sourcefile)) + local toolname = body.toolname + os.vrunv(toolname, table.join(flags, "-o", objectfile, sourcefile)) return os.isfile(objectfile) end, catch |
