diff options
author | jofret | 2010-07-19 06:10:24 +0000 |
---|---|---|
committer | jofret | 2010-07-19 06:10:24 +0000 |
commit | 933d95757261e32081e487e519f3ce8692ba902a (patch) | |
tree | fc4c4d1e28f82ad3e9a73ef68a4cf254222a1264 | |
parent | 11ac36b8178a40a9d2e24f047e2725cab2183e68 (diff) | |
download | scilab2c-933d95757261e32081e487e519f3ce8692ba902a.tar.gz scilab2c-933d95757261e32081e487e519f3ce8692ba902a.tar.bz2 scilab2c-933d95757261e32081e487e519f3ce8692ba902a.zip |
Remove verbose message
-rw-r--r-- | scilab2c/macros/runsci2c.sci | 9 |
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/");
|