summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-11-27 15:28:50 (GMT)
committerBrad King <brad.king@kitware.com>2003-11-27 15:28:50 (GMT)
commitffd8ca9cd9f98ec5809bbe8793ea47e331ef1eed (patch)
treec41ec803f795d100cd4579acf60662c8f17ca708 /Source/cmake.cxx
parentaaf0ed39ca1fad7b60c5ae20ac08381e37feba0a (diff)
downloadCMake-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.cxx2
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__)