diff options
author | Brad King <brad.king@kitware.com> | 2003-11-27 15:28:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2003-11-27 15:28:50 (GMT) |
commit | ffd8ca9cd9f98ec5809bbe8793ea47e331ef1eed (patch) | |
tree | c41ec803f795d100cd4579acf60662c8f17ca708 /Source/cmake.cxx | |
parent | aaf0ed39ca1fad7b60c5ae20ac08381e37feba0a (diff) | |
download | CMake-ffd8ca9cd9f98ec5809bbe8793ea47e331ef1eed.zip CMake-ffd8ca9cd9f98ec5809bbe8793ea47e331ef1eed.tar.gz CMake-ffd8ca9cd9f98ec5809bbe8793ea47e331ef1eed.tar.bz2 |
BUG: cmake_symlink_library should return the accumulated result, not just 0.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 8cc6f7a..1202835 100644 --- a/Source/cmake.cxx +++ b/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__) |