summaryrefslogtreecommitdiff
path: root/xmake/modules/private/action/trybuild/make.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-02-19 23:16:19 +0800
committerruki <[email protected]>2020-02-19 13:37:57 +0800
commit83be106cb6ef6f55dc992f97afa938ffed231087 (patch)
treef36f4ad629249fcfbdd03cad3fdbcef0658667b1 /xmake/modules/private/action/trybuild/make.lua
parented49fcb8e77087a12b01cae2bb7841a75a25b0fc (diff)
impl trybuild/meson
Diffstat (limited to 'xmake/modules/private/action/trybuild/make.lua')
-rw-r--r--xmake/modules/private/action/trybuild/make.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/private/action/trybuild/make.lua b/xmake/modules/private/action/trybuild/make.lua
index 2258b13b7..34f0ccaaa 100644
--- a/xmake/modules/private/action/trybuild/make.lua
+++ b/xmake/modules/private/action/trybuild/make.lua
@@ -29,12 +29,12 @@ end
-- do clean
function clean()
- os.exec("make clean")
+ os.vexec("make clean")
end
-- do build
function build()
- os.exec("make -j" .. option.get("jobs"))
+ os.vexec("make -j" .. option.get("jobs"))
cprint("${bright}build ok!")
end