Changeset 19206 for trunk/Mars/macros


Ignore:
Timestamp:
09/03/18 15:27:10 (6 years ago)
Author:
tbretz
Message:
Add include to include-paths (for simplified packaging -- less sub-directories), print 'error\!' in red instead of green.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/macros/rootlogon.C

    r17770 r19206  
    6262    cout << "Unloading 'libmars.so'... " << flush;
    6363    if (gSystem->Unload("libmars.so"))
    64         cout << "error." << endl;
     64        cout << "error!" << endl;
    6565    else
    6666        cout << "done." << endl << endl;
     
    7979    if (gSystem->Load(dir+"libmars.so")!=0)
    8080    {
    81         cout << "\033[33m\033[1m" << "error." << endl;
     81        cout << "\033[31m\033[1m" << "error!" << endl;
    8282        cout << "\033[0m" << endl;
    8383        return false;
     
    137137
    138138    gInterpreter->AddIncludePath(dir+"macros");
     139    gInterpreter->AddIncludePath(dir+"include");
    139140    gInterpreter->AddIncludePath(dir+"manalysis");
    140141    gInterpreter->AddIncludePath(dir+"mastro");
Note: See TracChangeset for help on using the changeset viewer.