Changeset 458


Ignore:
Timestamp:
May 14, 2008, 5:57:55 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 359

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r457 r458  
     12008-05-14    <rybkin@lal.in2p3.fr> 359
     2       
     3        * mgr/fragments/cleanup_header: Add a workaround to work in the parallel
     4        execution mode with the PEDANTIC Make switch
     5       
    162008-05-13    <rybkin@lal.in2p3.fr> 358
    27       
  • CMT/HEAD/mgr/fragments/cleanup_header

    r446 r458  
    1010.DEFAULT::
    1111        @echo "#CMT> PEDANTIC MODE >> No rule for target $@" >&2
    12         @if test `expr index $@ '.'` != 0 ; \
    13         then  echo "#CMT> PEDANTIC MODE >> $@ seems to be a missing file, please check" >&2; exit -1 ;\
    14         else echo "#CMT> PEDANTIC MODE >>  $@ seems to be a fake target due to some pattern. Just ignore it." >&2 ; exit 0; fi;                 
     12        @if test $@ = "$(cmt_final_setup)" -o\
     13         $@ = "$(cmt_final_setup_${CONSTITUENT})" ; then\
     14         found=n; for s in 1 2 3 4 5; do\
     15         sleep $$s; test ! -f $@ || { found=y; break; }\
     16         done; if test $$found = n; then\
     17         echo "#CMT> PEDANTIC MODE >> $@ seems to be missing. Ignore it for now" >&2; exit 0 ; fi;\
     18         elif test `expr index $@ '/'` -ne 0 ; then\
     19         echo "#CMT> PEDANTIC MODE >> $@ seems to be a missing file, please check" >&2; exit -1 ; \
     20         else\
     21         echo "#CMT> PEDANTIC MODE >> $@ seems to be a fake target due to some pattern. Just ignore it" >&2 ; exit 0; fi
    1522endif
    1623
Note: See TracChangeset for help on using the changeset viewer.