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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.