From 0bbdda2d414e85b54d6dcee1aeae6b12f14a0d45 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 15 Feb 2015 18:40:12 -0500 Subject: [PATCH] fix Command builder default short description --- lib/rscons/builders/command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rscons/builders/command.rb b/lib/rscons/builders/command.rb index 3dc6f09..797d7ed 100644 --- a/lib/rscons/builders/command.rb +++ b/lib/rscons/builders/command.rb @@ -25,7 +25,7 @@ module Rscons "_SOURCES" => sources, }) 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) end end