From 81c44e32c3df6afe66feadff03fbcaf92e719f9e Mon Sep 17 00:00:00 2001 From: Shy Date: Tue, 7 Apr 2020 11:36:05 -0400 Subject: [PATCH] ignore symlink creation failure error --- cmake/CheckFileSystemSymlinkSupport.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/CheckFileSystemSymlinkSupport.cmake b/cmake/CheckFileSystemSymlinkSupport.cmake index 798840efb..8eb508cb8 100644 --- a/cmake/CheckFileSystemSymlinkSupport.cmake +++ b/cmake/CheckFileSystemSymlinkSupport.cmake @@ -4,6 +4,7 @@ execute_process( COMMAND ${CMAKE_COMMAND} -E create_symlink CMakeLists.txt "${CMAKE_CURRENT_BINARY_DIR}/TestingIfSymlinkWorks" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} RESULT_VARIABLE FILESYSTEM_LACKS_SYMLINKS + ERROR_QUIET ) If (FILESYSTEM_LACKS_SYMLINKS) message(STATUS "Testing if file system supports symlinks -- unsupported")