From 6e92213c6dcf37178736de1df98854a5c3bbe529 Mon Sep 17 00:00:00 2001 From: jofret Date: Thu, 4 Feb 2010 10:28:54 +0000 Subject: Remove debug messages --- macros/runsci2c.sci | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'macros') diff --git a/macros/runsci2c.sci b/macros/runsci2c.sci index f23770aa..2b6ee1dc 100644 --- a/macros/runsci2c.sci +++ b/macros/runsci2c.sci @@ -103,7 +103,8 @@ mkdir(SCI2COutputPath+"/interfaces/"); PrintStepInfo('Copying sources needed in ' + SCI2COutputPath + ... "/src/c/", FileInfo.GeneralReport,'both'); for i = 1:size(allSources, "*") - disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/"); + // DEBUG only + //disp("Copying "+allSources(i)+" in "+SCI2COutputPath+"/src/c/"); copyfile(allSources(i), SCI2COutputPath+"/src/c/"); end @@ -111,7 +112,8 @@ end PrintStepInfo('Copying headers needed in ' + SCI2COutputPath + ... "/includes/", FileInfo.GeneralReport,'both'); for i = 1:size(allHeaders, "*") - disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/"); + // DEBUG only + // disp("Copying "+allHeaders(i)+" in "+SCI2COutputPath+"/includes/"); copyfile(allHeaders(i), SCI2COutputPath+"/includes/"); end @@ -119,7 +121,8 @@ end PrintStepInfo('Copying interfaces needed in ' + SCI2COutputPath + ... "/interfaces/", FileInfo.GeneralReport,'both'); for i = 1:size(allInterfaces, "*") - disp("Copying "+allInterfaces(i)+" in "+SCI2COutputPath+"/interfaces/"); + // DEBUG only + //disp("Copying "+allInterfaces(i)+" in "+SCI2COutputPath+"/interfaces/"); copyfile(allInterfaces(i), SCI2COutputPath+"/interfaces/"); end -- cgit