[Bf-blender-cvs] [00fbc32] master: CMake: remove ".svn" checks

Campbell Barton noreply at git.blender.org
Thu Feb 11 06:08:11 CET 2016


Commit: 00fbc326e31b67c41a023ef9a23bc44ed965268d
Author: Campbell Barton
Date:   Thu Feb 11 15:59:51 2016 +1100
Branches: master
https://developer.blender.org/rB00fbc326e31b67c41a023ef9a23bc44ed965268d

CMake: remove ".svn" checks

===================================================================

M	source/creator/CMakeLists.txt

===================================================================

diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 25dfb25..05c07f0 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -528,7 +528,6 @@ if(UNIX AND NOT APPLE)
 			install(
 				DIRECTORY ${PYTHON_LIBPATH}/python${PYTHON_VERSION}
 				DESTINATION ${TARGETDIR_VER}/python/${_target_LIB}
-				PATTERN ".svn" EXCLUDE
 				PATTERN "__pycache__" EXCLUDE               # * any cache *
 				PATTERN "distutils" EXCLUDE                 # ./distutils
 				PATTERN "lib2to3" EXCLUDE                   # ./lib2to3
@@ -556,7 +555,6 @@ if(UNIX AND NOT APPLE)
 				install(
 					DIRECTORY ${PYTHON_NUMPY_PATH}/numpy
 					DESTINATION ${TARGETDIR_VER}/python/${_target_LIB}/python${PYTHON_VERSION}/${_suffix}
-					PATTERN ".svn" EXCLUDE
 					PATTERN "__pycache__" EXCLUDE           # * any cache *
 					PATTERN "*.pyc" EXCLUDE                 # * any cache *
 					PATTERN "*.pyo" EXCLUDE                 # * any cache *
@@ -581,7 +579,6 @@ if(UNIX AND NOT APPLE)
 				install(
 					DIRECTORY ${PYTHON_REQUESTS_PATH}/requests
 					DESTINATION ${TARGETDIR_VER}/python/${_target_LIB}/python${PYTHON_VERSION}/${_suffix}
-					PATTERN ".svn" EXCLUDE
 					PATTERN "__pycache__" EXCLUDE           # * any cache *
 					PATTERN "*.pyc" EXCLUDE                 # * any cache *
 					PATTERN "*.pyo" EXCLUDE                 # * any cache *
@@ -594,7 +591,6 @@ if(UNIX AND NOT APPLE)
 						install(
 							DIRECTORY ${PYTHON_REQUESTS_PATH}/${_requests_dep}
 							DESTINATION ${TARGETDIR_VER}/python/${_target_LIB}/python${PYTHON_VERSION}/${_suffix}
-							PATTERN ".svn" EXCLUDE
 							PATTERN "__pycache__" EXCLUDE           # * any cache *
 							PATTERN "*.pyc" EXCLUDE                 # * any cache *
 							PATTERN "*.pyo" EXCLUDE                 # * any cache *
@@ -676,7 +672,6 @@ elseif(WIN32)
 			install(
 				DIRECTORY ${LIBDIR}/release/site-packages
 				DESTINATION ${BLENDER_VERSION}/python/lib
-				PATTERN ".svn" EXCLUDE
 				PATTERN "__pycache__" EXCLUDE           # * any cache *
 				PATTERN "*.pyc" EXCLUDE                 # * any cache *
 				PATTERN "*.pyo" EXCLUDE                 # * any cache *)
@@ -883,7 +878,6 @@ elseif(APPLE)
 			DIRECTORY ${from}
 			DESTINATION ${to}
 			PATTERN ".git" EXCLUDE
-			PATTERN ".svn" EXCLUDE
 			PATTERN "*.pyc" EXCLUDE
 			PATTERN "*.pyo" EXCLUDE
 			PATTERN "*.orig" EXCLUDE




More information about the Bf-blender-cvs mailing list