Ignore:
Timestamp:
Jul 26, 2012, 11:04:43 PM (12 years ago)
Author:
sommeria
Message:

bugs correctied in civ. test for compilation need introduced in check_files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/check_files.m

    r498 r505  
    184184checkmsg=checkmsg';
    185185
     186%% check dates of compilation
     187currentdir=pwd;
     188cd(pathuvmat)
     189list_compile=dir('*.sh');
     190for ilist=1:numel(list_compile)
     191    mfile=regexprep(list_compile(ilist).name,'.sh$','.m');
     192    datfile=dir(mfile);
     193    if isfield(datfile,'datenum') && datfile.datenum>list_compile(ilist).datenum
     194        checkmsg=[checkmsg;{[list_compile(ilist).name ' needs to be updated by compile_functions']}];
     195    end
     196end
     197
Note: See TracChangeset for help on using the changeset viewer.