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

This commit is contained in:
Brad King 2003-11-27 10:28:50 -05:00
parent aaf0ed39ca
commit ffd8ca9cd9
1 changed files with 1 additions and 1 deletions

View File

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