Преглед изворни кода

BUG: cmake_symlink_library should return the accumulated result, not just 0.

Brad King пре 22 година
родитељ
комит
ffd8ca9cd9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      Source/cmake.cxx

+ 1 - 1
Source/cmake.cxx

@@ -748,7 +748,7 @@ int cmake::CMakeCommand(std::vector<std::string>& args)
           result = 1;
           }
         }
-      return 0;
+      return result;
       }
 
 #if defined(_WIN32) && !defined(__CYGWIN__)