From d73ba75d149b82adf7cc5b41c6e7e63fb20b199a Mon Sep 17 00:00:00 2001 From: xqyjlj Date: Mon, 8 May 2023 16:04:13 +0800 Subject: ✨ feat(xmake/modules/package/tools/make.lua): fix VERBOSE sometimes don't work MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- xmake/modules/package/tools/make.lua | 2 ++ 1 file changed, 2 insertions(+) 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 -- cgit v1.3.1