From 6e9ac0fe979009806eb9dc021169902d61e58b30 Mon Sep 17 00:00:00 2001 From: Chris Want Date: Fri, 18 May 2007 15:57:40 +0000 Subject: [PATCH] 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. --- source/creator/CMakeLists.txt | 4 ++-- 1 file 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)