Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-06-30 15:44:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-06-30 15:44:27 +0300
commit3bb698646ad680b9c4f1a463a90b90454c25b76c (patch)
tree4c6032ffd0c6d6270f42bc4984e4ee92f204075c /CMakeLists.txt
parentc07bba1b05faf4d7ba0b129f1e178e3b2c6a8064 (diff)
CMake: minor edits
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 62162388b35..f710662ec63 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1115,12 +1115,12 @@ if(UNIX AND NOT APPLE)
execute_process(
COMMAND ${CMAKE_C_COMPILER} -fuse-ld=gold -Wl,--version
ERROR_QUIET OUTPUT_VARIABLE LD_VERSION)
- if ("${LD_VERSION}" MATCHES "GNU gold")
+ if("${LD_VERSION}" MATCHES "GNU gold")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fuse-ld=gold")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fuse-ld=gold")
- else ()
- message(INFO "GNU gold linker isn't available, using the default system linker.")
- endif ()
+ else()
+ message(STATUS "GNU gold linker isn't available, using the default system linker.")
+ endif()
unset(LD_VERSION)
# CLang is the same as GCC for now.