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:
authorCampbell Barton <ideasman42@gmail.com>2014-01-28 16:00:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-01-28 16:01:22 +0400
commitc2da706a36ca355509d9dc2abcffc1edc6c49fff (patch)
tree079e1fee7010538b22b61402b9e24a1e032c5cbf /CMakeLists.txt
parent59d1387c4154b4a285e8c53eca2128fbe59aeb54 (diff)
Code cleanup: remove references to svn and code style
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index ce4a11cf8e5..7ebc20feaf9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -511,12 +511,12 @@ endif()
#-----------------------------------------------------------------------------
# Check for valid directories
-# ... svn extern paths can be missing because of svn-git.
+# ... a partial checkout may cause this.
if(WITH_INTERNATIONAL)
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/release/datafiles/locale")
message(WARNING "Translation path '${CMAKE_SOURCE_DIR}/release/datafiles/locale' is missing, "
- "This is an 'svn external', which are known not to work with bridges to other version "
+ "This is a 'git submodule', which are known not to work with bridges to other version "
"control systems, disabling 'WITH_INTERNATIONAL'.")
set(WITH_INTERNATIONAL OFF)
endif()
@@ -525,7 +525,7 @@ endif()
if(WITH_PYTHON)
if(NOT EXISTS "${CMAKE_SOURCE_DIR}/release/scripts/addons")
message(WARNING "Addons path '${CMAKE_SOURCE_DIR}/release/scripts/addons' is missing, "
- "This is an 'svn external', which are known not to work with bridges to other version "
+ "This is a 'git submodule', which are known not to work with bridges to other version "
"control systems: * CONTINUING WITHOUT ADDONS *")
endif()
endif()