Changeset 189
- Timestamp:
- May 20, 2006, 12:47:32 PM (19 years ago)
- Location:
- CMT/HEAD
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
CMT/HEAD/ChangeLog
r184 r189 1 2006-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 7 2006-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 1 11 2006-04-25 Vincent Garonne <garonne@lal.in2p3.fr> 305 2 12 -
CMT/HEAD/source/cmt_pattern.cxx
r177 r189 766 766 replacement.replace_all ("<path>", context_use->real_path.c_str ()); 767 767 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); 769 774 if (p != 0) 770 775 {
Note:
See TracChangeset
for help on using the changeset viewer.