[cmake-commits] andy committed run.cmake.in 1.2 1.3

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 23 11:17:13 EST 2007


Update of /cvsroot/CMake/CMake/Tests/SimpleExclude
In directory public:/mounts/ram/cvs-serv1339/Tests/SimpleExclude

Modified Files:
	run.cmake.in 
Log Message:
ENH: Try to fix spaces in the path problem


Index: run.cmake.in
===================================================================
RCS file: /cvsroot/CMake/CMake/Tests/SimpleExclude/run.cmake.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- run.cmake.in	22 Feb 2007 20:16:43 -0000	1.2
+++ run.cmake.in	23 Feb 2007 16:17:11 -0000	1.3
@@ -1,8 +1,8 @@
-set(t4_name "@CMAKE_CURRENT_BINARY_DIR@${CFG_DIR}/t4")
+set(t4_name "\"@CMAKE_CURRENT_BINARY_DIR@${CFG_DIR}/t4\"")
 exec_program("${t4_name}" RETURN_VALUE "t4_var")
 message("T4 ${t4_name} resulted ${t4_var}")
 
-set(t9_name "@CMAKE_CURRENT_BINARY_DIR@${CFG_DIR}/t9")
+set(t9_name "\"@CMAKE_CURRENT_BINARY_DIR@${CFG_DIR}/t9\"")
 exec_program("${t9_name}" RETURN_VALUE "t9_var")
 message("T9 ${t9_name} resulted ${t9_var}")
 



More information about the Cmake-commits mailing list