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:
authorJacques Beuarain <jacques.beaurain@gmail.com>2006-12-10 20:38:38 +0300
committerJacques Beuarain <jacques.beaurain@gmail.com>2006-12-10 20:38:38 +0300
commit78f7fc41e43171b1f3400db3766ad25c218833ef (patch)
tree14a4965befa0e11028282390687c60dc81827d1c /source/creator/CMakeLists.txt
parentbfaa86b773611d499136109de9bdf55f2e512a9b (diff)
CMake: Fix postbuild step in Unix Makefiles because cp return error code
for CVS dir.
Diffstat (limited to 'source/creator/CMakeLists.txt')
-rw-r--r--source/creator/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index c7facc4e565..30075ace361 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -72,7 +72,7 @@ IF(UNIX)
POST_BUILD
MAIN_DEPENDENCY blender
COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/plugins ${TARGETDIR}/
- COMMAND cp ${CMAKE_SOURCE_DIR}/release/text/* ${TARGETDIR}/
+ COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/text/* ${TARGETDIR}/
)
ENDIF(UNIX)