Ver Fonte

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

Brad King há 22 anos atrás
pai
commit
ffd8ca9cd9
1 ficheiros alterados com 1 adições e 1 exclusões
  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__)