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:
authorChris Want <cwant@ualberta.ca>2007-05-18 19:57:40 +0400
committerChris Want <cwant@ualberta.ca>2007-05-18 19:57:40 +0400
commit6e9ac0fe979009806eb9dc021169902d61e58b30 (patch)
tree6600e73749b6192c6fef3fe722f94240b762a98b /source/creator
parent42121b6a3de9892b53bae1636c2b7755d441fcdb (diff)
Disable copying plugins, et al, to the CMake bin directory -- the
.svn directory would get copied and it has some files that are write protected, which means that the build would fail the second time you run make. Needs a better solution.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 96f1a47cd99..a34ed069b02 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -76,8 +76,8 @@ IF(UNIX)
ADD_CUSTOM_COMMAND(TARGET blender
POST_BUILD
MAIN_DEPENDENCY blender
- COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/plugins ${TARGETDIR}/
- COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/text/* ${TARGETDIR}/
+ #COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/plugins ${TARGETDIR}/
+ #COMMAND cp -R ${CMAKE_SOURCE_DIR}/release/text/* ${TARGETDIR}/
)
ENDIF(UNIX)