summaryrefslogtreecommitdiff
path: root/xmake/actions
diff options
context:
space:
mode:
authorruki <[email protected]>2016-04-13 10:13:37 +0800
committerruki <[email protected]>2016-04-13 10:13:37 +0800
commit097a0d5eb612d898fb8de01d6db7760aed947b4b (patch)
tree9c2ad3ffe67da1663953f9b7097721e96156cb18 /xmake/actions
parent833bfb207b3f924eaa81feb496cf74e6223d0041 (diff)
throw os.run errors
Diffstat (limited to 'xmake/actions')
-rwxr-xr-xxmake/actions/config/makefile.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/actions/config/makefile.lua b/xmake/actions/config/makefile.lua
index e0b66bd8b..b65b8a7b0 100755
--- a/xmake/actions/config/makefile.lua
+++ b/xmake/actions/config/makefile.lua
@@ -93,7 +93,7 @@ function _make_object(makefile, target, srcfile, objfile)
-- make command
local ccache = tool.shellname("ccache")
local compiler = target:compiler(srcfile)
- local cmd = compiler:makecmd(target, srcfile, objfile, _logfile())
+ local cmd = compiler:command(target, srcfile, objfile, _logfile())
if ccache then
cmd = ccache:append(cmd, " ")
end