From aa43e9446727d7b08d0c6d1ae0d9b2c6a0f3e64e Mon Sep 17 00:00:00 2001 From: abma Date: Fri, 1 Jan 2021 22:39:08 +0100 Subject: [PATCH] fatal error -> warning --- tools/unitsync/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/unitsync/CMakeLists.txt b/tools/unitsync/CMakeLists.txt index 94e6deaeb01..3c36d95f7c6 100644 --- a/tools/unitsync/CMakeLists.txt +++ b/tools/unitsync/CMakeLists.txt @@ -134,7 +134,7 @@ check_linker_flag("-Wl,--exclude-libs,ALL" LINKER_HAS_EXCLUDELIBS) if (LINKER_HAS_EXCLUDELIBS) set_target_properties(unitsync PROPERTIES LINK_FLAGS -Wl,--exclude-libs,ALL) else() - message(FATAL_ERROR "linker doesn't support -Wl,--exclude-libs,ALL this leads to a broke unitsync.so") + message(WARNING "linker doesn't support -Wl,--exclude-libs,ALL this leads to a broken unitsync.so") endif()