[Bf-blender-cvs] [684942c2] master: CMake/MSVC: Quotes around the path

Campbell Barton noreply at git.blender.org
Wed Jan 21 15:53:25 CET 2015


Commit: 684942c2feb60a5b2c73cd588ca6367699e4b5e3
Author: Campbell Barton
Date:   Thu Jan 22 01:52:17 2015 +1100
Branches: master
https://developer.blender.org/rB684942c2feb60a5b2c73cd588ca6367699e4b5e3

CMake/MSVC: Quotes around the path

D940 by @TeeTrizZz

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

M	source/creator/CMakeLists.txt

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

diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 21cb41d..f4d6432 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -640,9 +640,9 @@ elseif(WIN32)
 				"
 				message(STATUS \"Extracting Python to: \${CMAKE_INSTALL_PREFIX}/${BLENDER_VERSION}/python\")
 				if(\"\${CMAKE_INSTALL_CONFIG_NAME}\" MATCHES \"^([Dd][Ee][Bb][Uu][Gg])$\")
-					set(PYTHON_ZIP ${LIBDIR}/release/python${_PYTHON_VERSION_NO_DOTS}_d.tar.gz)
+					set(PYTHON_ZIP \"${LIBDIR}/release/python${_PYTHON_VERSION_NO_DOTS}_d.tar.gz\")
 				else()
-					set(PYTHON_ZIP ${LIBDIR}/release/python${_PYTHON_VERSION_NO_DOTS}.tar.gz)
+					set(PYTHON_ZIP \"${LIBDIR}/release/python${_PYTHON_VERSION_NO_DOTS}.tar.gz\")
 				endif()
 
 				execute_process(




More information about the Bf-blender-cvs mailing list