Kaynağa Gözat

Add new Boost.Build.1 path to find the toolset.

[SVN r20545]
Rene Rivera 23 yıl önce
ebeveyn
işleme
7bff2eb541
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3 1
      tools/regression/compiler_status.cpp

+ 3 - 1
tools/regression/compiler_status.cpp

@@ -240,8 +240,10 @@ namespace
   string compiler_desc( const string & compiler_name )
   {
     string result;
-    fs::path tools_path( boost_root / "tools/build" / (compiler_name
+    fs::path tools_path( boost_root / "tools/build/v1" / (compiler_name
       + "-tools.jam") );
+    if ( !fs::exists( tools_path ) )
+      tools_path = boost_root / "tools/build" / (compiler_name + "-tools.jam");
     fs::ifstream file( tools_path );
     if ( file )
     {

粤ICP备19079148号