# HG changeset patch # User Andre Heinecke # Date 1401186545 0 # Node ID cf7e82e91875d47b2cefa68a6a2a36b4a6c02d01 # Parent f4ce4eef3b389e77a0e419a40baa3e768612494f Do not fail when creating the link fails. Just warn. diff -r f4ce4eef3b38 -r cf7e82e91875 ui/tests/CMakeLists.txt --- a/ui/tests/CMakeLists.txt Tue May 27 10:28:36 2014 +0000 +++ b/ui/tests/CMakeLists.txt Tue May 27 10:29:05 2014 +0000 @@ -99,7 +99,7 @@ RESULT_VARIABLE result ERROR_VARIABLE output) if (NOT ${result} EQUAL 0) - message(FATAL_ERROR "Could not create symbolic link for: ${target} --> ${output}") + message(STATUS "Could not create symbolic link for: ${target} --> ${output}. NSS Test might fail.") endif() endif() endif()