diff options
Diffstat (limited to 'xmake/modules/package/tools/make.lua')
| -rw-r--r-- | xmake/modules/package/tools/make.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xmake/modules/package/tools/make.lua b/xmake/modules/package/tools/make.lua index 3e2cd6703..8f0208e09 100644 --- a/xmake/modules/package/tools/make.lua +++ b/xmake/modules/package/tools/make.lua @@ -122,6 +122,7 @@ function build(package, configs, opt) local argv = {"-j" .. njob} if option.get("verbose") then table.insert(argv, "VERBOSE=1") + table.insert(argv, "V=1") end for name, value in pairs(configs) do value = tostring(value):trim() @@ -149,6 +150,7 @@ function install(package, configs, opt) local argv = {"install"} if option.get("verbose") then table.insert(argv, "VERBOSE=1") + table.insert(argv, "V=1") end make(package, argv, opt) end |
