Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 27, 2009, 12:51:13 PM (15 years ago)
Author:
rgrieder
Message:

CppTcl bugfix in interpreter::interpreter(string const &libpath):
Added quotes around the directory to avoid problems on Windows when having white space in directories.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem3/src/cpptcl/cpptcl.cc

    r2664 r2700  
    866866     try
    867867     {
    868         this->eval("set tcl_library " + libpath);
     868        this->eval("set tcl_library \"" + libpath + "\"");
    869869        Tcl_Init(this->interp_);
    870870     } catch (...) {}
Note: See TracChangeset for help on using the changeset viewer.