Changeset 443


Ignore:
Timestamp:
Feb 16, 2008, 3:51:00 PM (16 years ago)
Author:
rybkin
Message:

See C.L. 347

Location:
CMT/HEAD
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/ChangeLog

    r442 r443  
     12008-02-16    <rybkin@lal.in2p3.fr> 347
     2       
     3        * source/cmt_parser.cxx: Issue a warning when structuring style used
     4        is `without_version_directory' but `version.cmt' file is missing (suggested
     5        by Laurent Vacavant). Issue a warning when `version.cmt' file exists
     6        but cannot be read
     7       
    182008-02-16    <rybkin@lal.in2p3.fr> 346
    29       
  • CMT/HEAD/source/cmt_parser.cxx

    r438 r443  
    863863            {
    864864              Me.m_current_version = "v*";
     865              cerr << "#CMT> Warning: "
     866                   << "Could not read `" << version_file << "'."
     867                   << " Default version " << Me.m_current_version << endl;
    865868            }
    866869
     
    930933              if (structuring_style == with_version_directory)
    931934                {
    932                   cerr << "#CMT> Warning: " << up_branch << " is not correct version syntax. Assuming it is package name" << endl;
     935                  cerr << "#CMT> Warning: `"
     936                       << up_branch << "' is not correct version syntax."
     937                    " Assuming it is package name" << endl;
    933938                }
    934939              // No version descriptor
     
    937942              Me.m_current_package = up_branch;
    938943              Me.m_current_version = "v*";
     944              cerr << "#CMT> Warning: "
     945                   << "Structuring style used `without_version_directory', `"
     946                   << version_file << "' missing."
     947                   << " Default version `" << Me.m_current_version << "'" << endl;
    939948              CmtSystem::dirname (up_dir, Me.m_current_path);
    940949             
Note: See TracChangeset for help on using the changeset viewer.