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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-06-16 11:21:33 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-06-16 12:04:46 +0400
commitdb750b984332fc303f5d69364045cf1fd3a044e6 (patch)
tree785ccdd6723736994fcc59fb983374c20fea069c /build_files
parentc95d093e81f7eac1c5c9c51a7f432bc612b4abda (diff)
Add missing dependency to CMake's msgfmt
This could have lead to situation when CMake wouldn't re-generate .mo file from changed .po file.
Diffstat (limited to 'build_files')
-rw-r--r--build_files/cmake/macros.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 772ff6d7596..bdd38837604 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -1006,7 +1006,7 @@ macro(msgfmt_simple
OUTPUT ${_file_to}
COMMAND ${CMAKE_COMMAND} -E make_directory ${_file_to_path}
COMMAND ${CMAKE_BINARY_DIR}/bin/${CMAKE_CFG_INTDIR}/msgfmt ${_file_from} ${_file_to}
- DEPENDS msgfmt)
+ DEPENDS msgfmt ${_file_from})
set_source_files_properties(${_file_to} PROPERTIES GENERATED TRUE)