summaryrefslogtreecommitdiff
path: root/xmake/modules/private/utils/batchcmds.lua
diff options
context:
space:
mode:
Diffstat (limited to 'xmake/modules/private/utils/batchcmds.lua')
-rw-r--r--xmake/modules/private/utils/batchcmds.lua4
1 files changed, 0 insertions, 4 deletions
diff --git a/xmake/modules/private/utils/batchcmds.lua b/xmake/modules/private/utils/batchcmds.lua
index e9b559118..797403b34 100644
--- a/xmake/modules/private/utils/batchcmds.lua
+++ b/xmake/modules/private/utils/batchcmds.lua
@@ -212,25 +212,21 @@ end
-- add command: os.runv
function batchcmds:runv(program, argv, opt)
table.insert(self:cmds(), {kind = "runv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: os.vrunv
function batchcmds:vrunv(program, argv, opt)
table.insert(self:cmds(), {kind = "vrunv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: os.execv
function batchcmds:execv(program, argv, opt)
table.insert(self:cmds(), {kind = "execv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: os.vexecv
function batchcmds:vexecv(program, argv, opt)
table.insert(self:cmds(), {kind = "vexecv", program = program, argv = argv, opt = opt})
- self:add_depvalues(program, argv)
end
-- add command: compiler.compile