From da77887d1817a3018ab075936958c86c4b2184e9 Mon Sep 17 00:00:00 2001
From: jofret
Date: Mon, 19 Jul 2010 06:10:24 +0000
Subject: Remove verbose message

---
 macros/runsci2c.sci | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

(limited to 'macros')

diff --git a/macros/runsci2c.sci b/macros/runsci2c.sci
index e35a3659..a6c4f38c 100644
--- a/macros/runsci2c.sci
+++ b/macros/runsci2c.sci
@@ -100,8 +100,7 @@ mkdir(SCI2COutputPath+"/includes/");
 mkdir(SCI2COutputPath+"/interfaces/");
 
 // -- Sources
-PrintStepInfo('Copying sources needed in ' + SCI2COutputPath + ...
-	      "/src/c/", FileInfo.GeneralReport,'both');
+PrintStepInfo('Copying sources', FileInfo.GeneralReport,'both');
 for i = 1:size(allSources, "*")
   // DEBUG only
   //disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/");
@@ -109,8 +108,7 @@ for i = 1:size(allSources, "*")
 end
 
 // -- Includes
-PrintStepInfo('Copying headers needed in ' + SCI2COutputPath + ...
-	      "/includes/", FileInfo.GeneralReport,'both');
+PrintStepInfo('Copying headers', FileInfo.GeneralReport,'both');
 for i = 1:size(allHeaders, "*")
   // DEBUG only
   // disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/");
@@ -118,8 +116,7 @@ for i = 1:size(allHeaders, "*")
 end
 
 // -- Interfaces
-PrintStepInfo('Copying interfaces needed in ' + SCI2COutputPath + ...
-	      "/interfaces/", FileInfo.GeneralReport,'both');
+PrintStepInfo('Copying interfaces', FileInfo.GeneralReport,'both');
 for i = 1:size(allInterfaces, "*")
   // DEBUG only
   //disp("Copying "+allInterfaces(i)+" in "+SCI2COutputPath+"/interfaces/");
-- 
cgit