Преглед на файлове

SunCC fix from Jens Maurer

[SVN r19079]
Beman Dawes преди 23 години
родител
ревизия
cf1ac1f3d5
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5 0
      tools/regression/compiler_status.cpp

+ 5 - 0
tools/regression/compiler_status.cpp

@@ -207,6 +207,11 @@ namespace
     {
       if ( fs::is_directory( *itr ) )
       {
+        // SunCC creates an internal subdirectory everywhere it writes
+        // object files.  This confuses the target_directory() algorithm.
+        // This patch ignores the SunCC internal directory. Jens Maurer
+        if ( (*itr).leaf() == "SunWS_cache" ) continue;
+
         if ( child.empty() ) child = *itr;
         else
         {

粤ICP备19079148号