Index: bcp_imp.cpp =================================================================== --- bcp_imp.cpp (revision 48986) +++ bcp_imp.cpp (working copy) @@ -78,7 +78,8 @@ void bcp_implementation::set_boost_path(const char* p) { - m_boost_path = fs::path(p, fs::native); + // Hack to strip trailing slashes from the path + m_boost_path = (fs::path(p, fs::native) / ".").parent_path(); fs::path check = m_boost_path / "boost" / "version.hpp"; if(!fs::exists(check)) {