Changeset 100


Ignore:
Timestamp:
Oct 15, 2005, 11:48:40 AM (19 years ago)
Author:
arnault
Message:

Fix a bug for releaseless projects on Windows CL#286

Location:
CMT/HEAD
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r98 r100  
     12005-10-15    <arnault@lal.in2p3.fr> 286
     2
     3        * source/cmt_project.cxx (use_action): Consider empty release for
     4        Windows (apparently dirs with two backslashes are not found??)
     5
    162005-10-11  Christian Arnault  <arnault@lal.in2p3.fr> 285
    27
  • CMT/HEAD/mgr/cmt.nmake

    r96 r100  
    33#  Application cmt
    44#
    5 #   Generated Tue Oct 11 12:15:27 2005  by arnault
     5#   Generated Sat Oct 15 11:22:36 2005  by ARNAULT
    66#
    77#====================================
  • CMT/HEAD/source/cmt_project.cxx

    r97 r100  
    566566      // Last step is to parse the project file
    567567
     568      if (Cmt::get_debug ())
     569        {
     570          cout << "About to parse project file [" << text << "]" << endl;
     571        }
     572
    568573      SyntaxParser::parse_project_file_text (text,
    569574                                             Project::get_project_file_name (),
     
    14081413void Project::use_action (const cmt_string& name, const cmt_string& release)
    14091414{
    1410   //cerr << "Use action " << name << " " << release << endl;
     1415  if (Cmt::get_debug ())
     1416    {
     1417      cout << "Use action " << name << " " << release << endl;
     1418    }
    14111419
    14121420  // A project with its release is specified
     
    14351443      p += CmtSystem::file_separator ();
    14361444      p += name;
    1437       p += CmtSystem::file_separator ();
    1438       p += release;
     1445      if (release != "")
     1446        {
     1447          p += CmtSystem::file_separator ();
     1448          p += release;
     1449        }
    14391450
    14401451      if (CmtSystem::test_directory (p))
Note: See TracChangeset for help on using the changeset viewer.