From ffd8ca9cd9f98ec5809bbe8793ea47e331ef1eed Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 27 Nov 2003 10:28:50 -0500 Subject: [PATCH] BUG: cmake_symlink_library should return the accumulated result, not just 0. --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 8cc6f7a85..1202835d2 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -748,7 +748,7 @@ int cmake::CMakeCommand(std::vector& args) result = 1; } } - return 0; + return result; } #if defined(_WIN32) && !defined(__CYGWIN__)