summaryrefslogtreecommitdiff
path: root/xmake/plugins/project/make/makefile.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-04-27 00:37:01 +0800
committerruki <[email protected]>2023-04-27 00:37:01 +0800
commit651376311383947ac906fbc6b4e188bec0171713 (patch)
tree2b1b630fb8f9928f26b2f69c741567f5d63f0c49 /xmake/plugins/project/make/makefile.lua
parent80957b2d5737b26bd2f0d94418357f12a7ff8ae5 (diff)
add vv to command program
Diffstat (limited to 'xmake/plugins/project/make/makefile.lua')
-rw-r--r--xmake/plugins/project/make/makefile.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/plugins/project/make/makefile.lua b/xmake/plugins/project/make/makefile.lua
index cdfd1cf8d..f43e75f2d 100644
--- a/xmake/plugins/project/make/makefile.lua
+++ b/xmake/plugins/project/make/makefile.lua
@@ -229,7 +229,7 @@ function _get_command_string(cmd, outputdir)
if opt and opt.curdir then
wprint("curdir has been not supported in batchcmds:execv() for makefile generator!")
end
- return command
+ return "%$(VV)" .. command
elseif kind == "cp" then
if os.isdir(cmd.srcpath) then
return _get_cmd_cpdir(get_relative_unix_path(cmd.srcpath, outputdir), _get_relative_unix_path(cmd.dstpath, outputdir))