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>2014-02-19 01:02:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-19 01:02:59 +0400
commitc9233bfd828f6e37e1c6e492e4e835dae01288d7 (patch)
tree747bd94255dd33602b233564b54c2d3aa8760f40 /intern/locale
parentacecae86dc8d4e59d373c73fb6abbdc276a98896 (diff)
Code cleanup: style
Diffstat (limited to 'intern/locale')
-rw-r--r--intern/locale/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/locale/CMakeLists.txt b/intern/locale/CMakeLists.txt
index 6f3b6a695b6..4dc447391fc 100644
--- a/intern/locale/CMakeLists.txt
+++ b/intern/locale/CMakeLists.txt
@@ -53,7 +53,7 @@ set(MSFFMT_SRC
)
add_executable(msgfmt ${MSFFMT_SRC})
-if(CMAKE_C_COMPILER_ID MATCHES "Clang" AND (CMAKE_C_COMPILER_VERSION VERSION_EQUAL 3.4 OR CMAKE_C_COMPILER_VERSION VERSION_GREATER 3.4))
+if(CMAKE_C_COMPILER_ID MATCHES "Clang" AND (NOT (CMAKE_C_COMPILER_VERSION VERSION_LESS 3.4)))
# needed for clang 3.4+
target_link_libraries(msgfmt ${PLATFORM_LINKLIBS})
endif()