# # patch "ChangeLog" # from [52a6fed74e8e948798d452fd58ec05d7d7e2237f] # to [79722760a292dfb3cd1d9becc8f7a5c0f74d83a8] # # patch "file_io.cc" # from [5b50c7cf2a8c3c21ec775980fcf3af07fa91a21a] # to [94d9dfc17ae1f1b7a6218d25c24321635a57b236] # ======================================================================== --- ChangeLog 52a6fed74e8e948798d452fd58ec05d7d7e2237f +++ ChangeLog 79722760a292dfb3cd1d9becc8f7a5c0f74d83a8 @@ -1,5 +1,11 @@ 2005-08-26 Nathaniel Smith + * file_io.cc (make_dir_for): Oops, this doesn't need a + fs::native. + Test 37 now passes. + +2005-08-26 Nathaniel Smith + * file_io.cc (mkdir): New function. Now with extra brain-eating power. (mkdir_p, make_dir_for, delete_file, delete_dir_recursive) ======================================================================== --- file_io.cc 5b50c7cf2a8c3c21ec775980fcf3af07fa91a21a +++ file_io.cc 94d9dfc17ae1f1b7a6218d25c24321635a57b236 @@ -152,7 +152,7 @@ fs::path tmp(p.as_external(), fs::native); if (tmp.has_branch_path()) { - fs::create_directories(fs::path(tmp.branch_path(), fs::native)); + fs::create_directories(tmp.branch_path()); } }