summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-01-03 00:08:06 +0800
committerGitHub <[email protected]>2019-01-03 00:08:06 +0800
commitec40e9e8f26530aef3fc785a8c138b4710046475 (patch)
treed9b6b22676333a4d66387a7ebac3f2f2f72a4181
parentde3f85cd005b8fef87e90379a861c8be62957ea2 (diff)
Update object.lua
-rw-r--r--xmake/actions/build/kinds/object.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/actions/build/kinds/object.lua b/xmake/actions/build/kinds/object.lua
index d66807363..ee294a255 100644
--- a/xmake/actions/build/kinds/object.lua
+++ b/xmake/actions/build/kinds/object.lua
@@ -219,9 +219,9 @@ function _build_files_for_single(target, sourcebatch, jobs)
-- trace progress info
if verbose then
- cprint("${color.build.progress}[%3d%%]:${color.build.object.verbose}%scompiling.$(mode) %s", progress, _g.ccache and "ccache " or "", sourcefile)
+ cprint("${color.build.progress}[%3d%%]:${clear}${color.build.object.verbose}%scompiling.$(mode) %s", progress, _g.ccache and "ccache " or "", sourcefile)
else
- cprint("${color.build.progress}[%3d%%]:${color.build.object} %scompiling.$(mode) %s", progress, _g.ccache and "ccache " or "", sourcefile)
+ cprint("${color.build.progress}[%3d%%]:${clear}${color.build.object} %scompiling.$(mode) %s", progress, _g.ccache and "ccache " or "", sourcefile)
end
end