Ignore:
Timestamp:
May 27, 2016, 4:59:21 PM (8 years ago)
Author:
rybkin
Message:

See C.L. 528

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CMT/HEAD/source/cmt_use.cxx

    r667 r679  
    752752      if (!use->located ())
    753753        {
     754          if (use->get_package_name () == "cmt_standalone") continue;
    754755          CmtError::set (CmtError::package_not_found, use->get_info ());
    755         }
    756       else
    757         {
    758           /*
    759             CmtMessage::info ("package " +
    760             use->get_package_name () +
    761             " " + use->version +
    762             (use->path != "" ? " " + use->path : "") +
    763             " found");
    764           */
    765756        }
    766757    }
     
    58475838    {
    58485839      cmt_string s (Symbol::get_env_value ("CMTHEADVERSION"));
     5840      // strip the leading '!'
     5841      // See mgr/cmt_svn_checkout.py:CmtContext::set_head_version
     5842      if (0 != s.size () && '!' == s[0]) s = s.substr(1);
    58495843      static const cmt_string package_template = "<package>";
    58505844      s.replace_all (package_template, get_package_name ());
Note: See TracChangeset for help on using the changeset viewer.