Changeset 108 for CMT/HEAD


Ignore:
Timestamp:
Oct 28, 2005, 6:51:19 PM (19 years ago)
Author:
arnault
Message:

Hack for the .DEFAUT target see CL#289

Location:
CMT/HEAD
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r103 r108  
     12005-10-28    <arnault@lal.in2p3.fr> 289
     2
     3        cmt/fragments/cleanup_header: Temporary hack to deal with missing files
     4        and to avoid infinite loops in make. However, this must be seen as a ugly hack
     5        since it considers an Atlas use case with config.h.in. This hack is
     6        harmless to any user of this special file though.
     7
     8 
    192005-10-18    <arnault@lal.in2p3.fr> 288
    210
  • CMT/HEAD/mgr/fragments/cleanup_header

    r107 r108  
    44        @cd .
    55
    6 #.DEFAULT::
    7 #       @echo Using default action for $@
     6#------------------------------------------------------------------------
     7#        Temporary hack to deal with missing files
     8#        and to avoid infinite loops in make. However, this must be seen as a ugly hack
     9#        since it considers an Atlas use case with config.h.in. This hack is
     10#        harmless to any user of this special file though.
     11# =====> the .DEFAULT target should eventually complete disappear
     12#------------------------------------------------------------------------
     13
     14.DEFAULT::
     15        @if echo $@ | grep config.h.in ; then exit 0; else exit 1; fi
     16
     17##@echo Using default action for $@
     18
    819
    920${CONSTITUENT}clean ::
  • CMT/HEAD/source/cmt_parser.cxx

    r102 r108  
    65346534    if (Uses.size () == 0) return;
    65356535
    6536     //buffer = "macro q '\"'";
    6537     //apply ();
    6538 
    65396536    if (!Symbol::is_selected ("use_requirements"))
    65406537      {
     
    65506547            if (use->located ())
    65516548              {
    6552                 buffer += "$(q)$(";
     6549                buffer += "$(";
    65536550                buffer += use->prefix;
    65546551                buffer += "ROOT)";
     
    65596556               
    65606557                buffer += fs;
    6561                 buffer += "requirements$(q) ";
     6558                buffer += "requirements ";
    65626559              }
    65636560          }
Note: See TracChangeset for help on using the changeset viewer.