diff options
author | jofret | 2010-02-04 10:28:54 +0000 |
---|---|---|
committer | jofret | 2010-02-04 10:28:54 +0000 |
commit | 6e92213c6dcf37178736de1df98854a5c3bbe529 (patch) | |
tree | 71e5b2ced82ad39effb45af101c823dbcf0fd956 /macros | |
parent | 54e0f5208ee8064f16919dcc5c564c2241fc3085 (diff) | |
download | scilab2c-6e92213c6dcf37178736de1df98854a5c3bbe529.tar.gz scilab2c-6e92213c6dcf37178736de1df98854a5c3bbe529.tar.bz2 scilab2c-6e92213c6dcf37178736de1df98854a5c3bbe529.zip |
Remove debug messages
Diffstat (limited to 'macros')
-rw-r--r-- | macros/runsci2c.sci | 9 |
1 files changed, 6 insertions, 3 deletions
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
|