fix Command builder default short description

This commit is contained in:
Josh Holtrop 2015-02-15 18:40:12 -05:00
parent 3b8910075a
commit 0bbdda2d41

View File

@ -25,7 +25,7 @@ module Rscons
"_SOURCES" => sources, "_SOURCES" => sources,
}) })
command = env.build_command("${CMD}", vars) command = env.build_command("${CMD}", vars)
cmd_desc = vars["CMD_DESC"] || "cmd_desc" cmd_desc = vars["CMD_DESC"] || "Command"
standard_build("#{cmd_desc} #{target}", target, command, sources, env, cache) standard_build("#{cmd_desc} #{target}", target, command, sources, env, cache)
end end
end end