Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2692


Ignore:
Timestamp:
Feb 23, 2009, 9:32:21 PM (15 years ago)
Author:
rgrieder
Message:

make_directories should create a directory recursively.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem3/src/core/Core.cc

    r2690 r2692  
    311311                                         Please remove " + it->first.file_string());
    312312            }
    313             if (boost::filesystem::create_directory(it->first)) // function may not return true at all (bug?)
     313            if (boost::filesystem::create_directories(it->first)) // function may not return true at all (bug?)
    314314            {
    315315                COUT(4) << "Created " << it->second << " directory" << std::endl;
Note: See TracChangeset for help on using the changeset viewer.