summaryrefslogtreecommitdiff
path: root/macros
diff options
context:
space:
mode:
authorjofret2010-07-19 06:10:24 +0000
committerjofret2010-07-19 06:10:24 +0000
commitda77887d1817a3018ab075936958c86c4b2184e9 (patch)
tree644fad2bd1c42333421be7b3335fe3ce9c7f10a4 /macros
parentb14368dc10eb94d953e62194162d23ff8fc61313 (diff)
downloadscilab2c-da77887d1817a3018ab075936958c86c4b2184e9.tar.gz
scilab2c-da77887d1817a3018ab075936958c86c4b2184e9.tar.bz2
scilab2c-da77887d1817a3018ab075936958c86c4b2184e9.zip
Remove verbose message
Diffstat (limited to 'macros')
-rw-r--r--macros/runsci2c.sci9
1 files changed, 3 insertions, 6 deletions
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/");