summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjofret2010-07-19 06:10:24 +0000
committerjofret2010-07-19 06:10:24 +0000
commit933d95757261e32081e487e519f3ce8692ba902a (patch)
treefc4c4d1e28f82ad3e9a73ef68a4cf254222a1264
parent11ac36b8178a40a9d2e24f047e2725cab2183e68 (diff)
downloadscilab2c-933d95757261e32081e487e519f3ce8692ba902a.tar.gz
scilab2c-933d95757261e32081e487e519f3ce8692ba902a.tar.bz2
scilab2c-933d95757261e32081e487e519f3ce8692ba902a.zip
Remove verbose message
-rw-r--r--scilab2c/macros/runsci2c.sci9
1 files changed, 3 insertions, 6 deletions
diff --git a/scilab2c/macros/runsci2c.sci b/scilab2c/macros/runsci2c.sci
index e35a3659..a6c4f38c 100644
--- a/scilab2c/macros/runsci2c.sci
+++ b/scilab2c/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/");