diff options
author | jofret | 2009-05-13 14:25:51 +0000 |
---|---|---|
committer | jofret | 2009-05-13 14:25:51 +0000 |
commit | 68d05a0950490a3dd4dbb9d70e1e2ef1dcb1edbf (patch) | |
tree | 75e6f8d65404f567b34062980bc858e776b38c07 | |
parent | 5fa8f0897cb2f1fd92583a7403dc298480e398c4 (diff) | |
download | scilab2c-68d05a0950490a3dd4dbb9d70e1e2ef1dcb1edbf.tar.gz scilab2c-68d05a0950490a3dd4dbb9d70e1e2ef1dcb1edbf.tar.bz2 scilab2c-68d05a0950490a3dd4dbb9d70e1e2ef1dcb1edbf.zip |
correct PATH to be accessible outside toolbox directory
-rw-r--r-- | macros/ToolInitialization/INIT_GenFileInfo.sci | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/ToolInitialization/INIT_GenFileInfo.sci b/macros/ToolInitialization/INIT_GenFileInfo.sci index db6c209e..f165e55a 100644 --- a/macros/ToolInitialization/INIT_GenFileInfo.sci +++ b/macros/ToolInitialization/INIT_GenFileInfo.sci @@ -108,5 +108,5 @@ FileInfo.GeneralReport = fullfile(FileInfo.WorkingDir,'SCI2CGeneralReport.txt'); FileInfo.CStyleSCI2CMainDir = pathconvert(FileInfo.SCI2CMainDir, %f, %f, 'u');
FileInfo.CStyleOutCCCodeDir = pathconvert(OutCCCodeDir, %f, %f, 'u');
FileInfo.MakefileFilename = fullfile(FileInfo.CStyleOutCCCodeDir,'Makefile');
-FileInfo.MakefileTemplate = fullfile(FileInfo.SCI2CMainDir,'macros/CCodeGeneration','SCI2CMakefileTemplate.rc');
+FileInfo.MakefileTemplate = fullfile(FileInfo.SCI2CMainDir,SCI+'/contrib/scilab2c/macros/CCodeGeneration','SCI2CMakefileTemplate.rc');
endfunction
|