Index: tools/regression/src/process_jam_log.cpp =================================================================== --- tools/regression/src/process_jam_log.cpp (revision 67026) +++ tools/regression/src/process_jam_log.cpp (working copy) @@ -6,6 +6,8 @@ // See http://www.boost.org/tools/regression for documentation. +#define BOOST_FILESYSTEM_VERSION 3 + #include #include "detail/tiny_xml.hpp" @@ -613,7 +615,7 @@ std::cout << "Abort: option --boost-root requires a directory argument\n"; std::exit(1); } - boost_root = fs::path( argv[1], fs::native ); + boost_root = fs::path( argv[1] ); if ( !boost_root.is_complete() ) boost_root = ( fs::initial_path() / boost_root ).normalize(); @@ -627,7 +629,7 @@ std::cout << "Abort: option --locate-root requires a directory argument\n"; std::exit(1); } - locate_root = fs::path( argv[1], fs::native ); + locate_root = fs::path( argv[1] ); --argc; ++argv; } else if ( std::strcmp( argv[1], "--input-file" ) == 0 ) @@ -648,7 +650,7 @@ } else { - locate_root = fs::path( argv[1], fs::native ); + locate_root = fs::path( argv[1] ); --argc; ++argv; } }