Changeset 189


Ignore:
Timestamp:
May 20, 2006, 12:47:32 PM (19 years ago)
Author:
arnault
Message:

Patch for <project> template in pattern - See CL 307

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r184 r189  
     12006-05-20  Christian Arnault  <arnault@lal.in2p3.fr> 307
     2
     3        * source/cmt_pattern.cxx (expand): Make use of
     4        use->get_cmtpath_and_offset to compute the project of the package
     5        when expanding the <project> template to fix packages with offset
     6
     72006-04-25 Vincent Garonne <garonne@lal.in2p3.fr> 306
     8
     9        * cmt_generator.cxx: Add the fixe recommend by markus to deal with extern c data on visual
     10
    1112006-04-25 Vincent Garonne <garonne@lal.in2p3.fr> 305
    212
  • CMT/HEAD/source/cmt_pattern.cxx

    r177 r189  
    766766      replacement.replace_all ("<path>",    context_use->real_path.c_str ());
    767767
    768       Project* p = Project::find_by_cmtpath (context_use->real_path);
     768      cmt_string cmtpath = "";
     769      cmt_string offset = "";
     770
     771      context_use->get_cmtpath_and_offset (cmtpath, offset);
     772
     773      Project* p = Project::find_by_cmtpath (cmtpath);
    769774      if (p != 0)
    770775        {
Note: See TracChangeset for help on using the changeset viewer.